diff --git a/CMakeLists.txt b/CMakeLists.txt index 1b9131e..cef1d7e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,9 @@ cmake_minimum_required(VERSION 3.20.0) +if (EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${BOARD}.overlay") + set(mcuboot_DTC_OVERLAY_FILE "${CMAKE_CURRENT_SOURCE_DIR}/${BOARD}.overlay") +endif() + find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) set(CMAKE_EXPORT_COMPILE_COMMANDS ON) project(passr) diff --git a/Makefile b/Makefile index 64f9b4c..c2049e4 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,12 @@ .ONESHELL: -TARGET=rpi_pico +TARGET=nrf52840dk_nrf52840 CMAKE_ZEPHYR_PATH=../zephyrproject/zephyr CMAKE_ZEPHYR_COMMAND=west build CMAKE_ZEPHYR_FLAGS=-b $(TARGET) -all: compile flash_pico +all: compile flash setup: west init @@ -14,18 +14,15 @@ setup: compile: $(CMAKE_ZEPHYR_COMMAND) $(CMAKE_ZEPHYR_FLAGS) - cp build/zephyr/zephyr.uf2 ./zephyr.uf2 - echo "Copied zephyr.uf2 to project root" -flash_pico: - # mount then copy the uf2 - sudo mount -L RPI-RP2 /mnt - sudo cp zephyr.uf2 /mnt - echo "Copied zephyr.uf2 to pico" +flash: compile + cp build/zephyr/zephyr.hex ./zephyr.hex + echo "Copied zephyr.hex to project root" + nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset + minicom -D /dev/ttyACM0 -b 115200 -# FIXME: This is entirely board specific, for example the pi pico will vibe differently -flash: - west flash +listen: + minicom -D /dev/ttyACM0 -b 115200 clean: rm -rf build/ diff --git a/boards/nrf52840dk_nrf52840.overlay b/boards/nrf52840dk_nrf52840.overlay new file mode 100644 index 0000000..d27bad5 --- /dev/null +++ b/boards/nrf52840dk_nrf52840.overlay @@ -0,0 +1,63 @@ +&pinctrl { + spi_master_default: spi_master_default { + group1 { + psels = , + , + ; + }; + }; + + spi_master_sleep: spi_master_sleep { + group1 { + psels = , + , + ; + low-power-enable; + }; + }; + + spi_slave_default: spi_slave_default { + group1 { + psels = , + , + , + ; + }; + }; + + spi_slave_sleep: spi_slave_sleep { + group1 { + psels = , + , + , + ; + low-power-enable; + }; + }; +}; + +my_spi_master: &spi3 { + compatible = "nordic,nrf-spim"; + status = "okay"; + pinctrl-0 = <&spi_master_default>; + pinctrl-1 = <&spi_master_sleep>; + pinctrl-names = "default", "sleep"; + cs-gpios = <&gpio0 28 GPIO_ACTIVE_LOW>; + reg_my_spi_master: spi-dev-a@0 { + reg = <0>; + }; +}; + +my_spi_slave: &spi1 { + compatible = "nordic,nrf-spis"; + status = "okay"; + pinctrl-0 = <&spi_slave_default>; + pinctrl-1 = <&spi_slave_sleep>; + pinctrl-names = "default", "sleep"; + def-char = <0x00>; +}; + +// By default uart1 will occupy P1.01 and P1.02. In order to make these pins available, disable uart1 +&uart1 { + status="disabled"; +}; diff --git a/log.log b/log.log new file mode 100644 index 0000000..a28c6a8 --- /dev/null +++ b/log.log @@ -0,0 +1,207554 @@ +[2023-Jun-02 15:32:32] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:32:32] [debug] nrfjprog -f nrf52 --program zephyr.hex --verify --log +[2023-Jun-02 15:32:32] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 15:32:32] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:32:32] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 15:32:32] [ info] Library loaded, loading member functions. +[2023-Jun-02 15:32:32] [ info] Member functions succesfully loaded. +[2023-Jun-02 15:32:32] [debug] [ Client] - open +[2023-Jun-02 15:32:32] [debug] [ Client] - start +[2023-Jun-02 15:32:32] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence 2e3a7ca5-b8ed-4b1e-900a-0ef62264e76e. +[2023-Jun-02 15:32:32] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 15:32:32] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 15:32:32] [debug] [ nRF52] - open +[2023-Jun-02 15:32:32] [debug] [ nRF52] - just_check_family +[2023-Jun-02 15:32:32] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 15:32:32] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 15:32:32] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:32:32] [debug] [ Client] - config +[2023-Jun-02 15:32:32] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:32] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 15:32:32] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 15:32:32] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 15:32:32] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 15:32:32] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 15:32:32] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 15:32:32] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 15:32:32] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:32:32] [debug] [ nRF52] - config +[2023-Jun-02 15:32:32] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 15:32:32] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:32] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 15:32:32] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:32:32] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 15:32:33] [trace] [ Client] - Command enum_emu_con_info executed for 106 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:32:33] [trace] [ Worker] - Command enum_emu_con_info executed for 106 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 15:32:33] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:32:33] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:32:33] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 15:32:33] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 15:32:33] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 15:32:33] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 15:32:33] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 15:32:33] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 15:32:33] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 15:32:33] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:32:33] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:32:33] [trace] [ Client] - Command connect_to_emu_with_snr executed for 341 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 15:32:33] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ Client] - read_device_info +[2023-Jun-02 15:32:33] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 32.341ms returns "O.K." +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.000ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.003ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.298ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 15:32:33] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.050ms +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:32:33] [debug] [ nRF52] - read_device_family +[2023-Jun-02 15:32:33] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 341 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:32:33] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.134ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.319ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.003ms returns FALSE +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:32:33] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.611ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 15:32:33] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:32:33] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:32:33] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 15:32:33] [trace] [ JLink] - InitTarget() end - Took 1.64ms +[2023-Jun-02 15:32:33] [trace] [ JLink] - InitTarget() end - Took 1.64ms +[2023-Jun-02 15:32:33] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:32:33] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:32:33] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:32:33] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:32:33] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:32:33] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:32:33] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:32:33] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:32:33] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:32:33] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:32:33] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:32:33] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:32:33] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:32:33] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:32:33] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:32:33] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:32:33] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:32:33] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 15:32:33] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:32:33] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 15:32:33] [trace] [ Client] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:32:33] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:32:33] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:32:33] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 15:32:33] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:32:33] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 15:32:33] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:32:33] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 15:32:33] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:32:33] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 15:32:33] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:32:33] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 12.605ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.005ms returns 0xE0000FF +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.009ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.353ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.043ms +[2023-Jun-02 15:32:33] [trace] [ Worker] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.004ms returns 0x01 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:32:33] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.003ms returns TRUE +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.352ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.053ms +[2023-Jun-02 15:32:33] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ Client] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:32:33] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:32:33] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:32:33] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:32:33] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:32:33] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:32:33] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:32:33] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:32:33] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:32:33] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:32:33] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:32:33] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:32:33] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:32:33] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 15:32:33] [trace] [ Worker] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:32:33] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:32:33] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:32:33] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:32:33] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:32:33] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:32:33] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:32:33] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:32:33] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:32:33] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:32:33] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:32:33] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:32:33] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ Client] - erase +[2023-Jun-02 15:32:33] [trace] [ Client] - Command erase_file executed for 1 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ Client] - program +[2023-Jun-02 15:32:33] [debug] [ nRF52] - erase_file +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - erase +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 1.092ms +[2023-Jun-02 15:32:33] [trace] [ Worker] - Command erase_file executed for 1 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - program +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:32:33] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 15:32:33] [debug] [ nRF52] - program_file +[2023-Jun-02 15:32:33] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 15:32:33] [ info] [ nRF52] - Check program file +[2023-Jun-02 15:32:33] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:32:33] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:32:33] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:32:33] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:32:33] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:32:33] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:32:33] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:32:33] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:32:33] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.267ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.265ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.258ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 3.243ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":8,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:32:33] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:32:33] [ info] [ nRF52] - Program flash. +[2023-Jun-02 15:32:33] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:32:33] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_write +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - write +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.153ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.606ms returns 0 (0x00000000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_WriteMem(19816 bytes @ 0x00000000) +[2023-Jun-02 15:32:33] [trace] [ Client] - Command program_file executed for 146 milliseconds with result 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 129.391ms returns 0x4D68 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.304ms returns 0 (0x00000000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:32:33] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":131,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.016ms +[2023-Jun-02 15:32:33] [trace] [ Worker] - Command program_file executed for 146 milliseconds with result 0 +[2023-Jun-02 15:32:33] [debug] [ Client] - verify +[2023-Jun-02 15:32:33] [debug] [ nRF52] - verify +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:32:33] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 15:32:33] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 15:32:33] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:32:33] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:32:33] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:32:33] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:32:33] [ info] [ nRF52] - Verify +[2023-Jun-02 15:32:33] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 15:32:33] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:32:33] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:32:33] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:32:33] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:32:33] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":199,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:32:33] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:32:33] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:32:33] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 15:32:33] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:32:33] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:32:33] [debug] [ nRF52] - Just_read +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - read +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 15:32:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:32:33] [trace] [ JLink] - CPU_ReadMem(19840 bytes @ 0x00000000) +[2023-Jun-02 15:32:33] [trace] [ Client] - Command verify_file executed for 142 milliseconds with result -160 +[2023-Jun-02 15:32:33] [trace] [ JLink] - -- Updating C cache (19840 bytes @ 0x00000000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - -- Read from C cache (19816 bytes @ 0x00000000) +[2023-Jun-02 15:32:33] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 132.410ms returns 0 +[2023-Jun-02 15:32:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:32:33] [error] [ nRF52] - Data does not match in address range [0x00000000-0x00004D68] (Flash) +[2023-Jun-02 15:32:33] [ info] [ nRF52] - {"amountOfSteps":0,"description":"Verifying image","message":"Data does not match in address range [0x00000000-0x00004D68] (Flash)","operation":"verify_image","progressPercentage":0,"result":"fail","step":0} +[2023-Jun-02 15:32:33] [error] [ nRF52] - Expected byte value 0x38 but read 0x00 at address 0x00000414. +[2023-Jun-02 15:32:33] [ info] [ nRF52] - {"amountOfSteps":0,"description":"Verifying image","message":"Expected byte value 0x38 but read 0x00 at address 0x00000414.","operation":"verify_image","progressPercentage":0,"result":"fail","step":0} +[2023-Jun-02 15:32:33] [error] [ nRF52] - Flash verification failed. +[2023-Jun-02 15:32:33] [error] [ nRF52] - Failed while verifying file zephyr.hex. +[2023-Jun-02 15:32:33] [trace] [ JLink] - - 0.024ms +[2023-Jun-02 15:33:45] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:33:45] [debug] nrfjprog -f nrf52 --program zephyr.hex --verify --log +[2023-Jun-02 15:33:45] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 15:33:45] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:33:45] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 15:33:45] [ info] Library loaded, loading member functions. +[2023-Jun-02 15:33:45] [ info] Member functions succesfully loaded. +[2023-Jun-02 15:33:45] [debug] [ Client] - open +[2023-Jun-02 15:33:45] [debug] [ Client] - start +[2023-Jun-02 15:33:45] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence 2eec1cfa-5665-466a-9429-f6c736d21375. +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 15:33:45] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 15:33:45] [debug] [ nRF52] - open +[2023-Jun-02 15:33:45] [debug] [ nRF52] - just_check_family +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 15:33:45] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ Client] - config +[2023-Jun-02 15:33:45] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 15:33:45] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 15:33:45] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 15:33:45] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 15:33:45] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 15:33:45] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - config +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 15:33:45] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 15:33:45] [trace] [ Client] - Command enum_emu_con_info executed for 104 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:45] [trace] [ Worker] - Command enum_emu_con_info executed for 104 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 15:33:45] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:33:45] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:33:45] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 15:33:45] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 15:33:45] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 15:33:45] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 15:33:45] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 15:33:45] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 15:33:45] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 15:33:45] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 15:33:45] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:33:45] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:33:45] [trace] [ Client] - Command connect_to_emu_with_snr executed for 349 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 15:33:45] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ Client] - read_device_info +[2023-Jun-02 15:33:45] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 28.363ms returns "O.K." +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.426ms returns 0x00 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 15:33:45] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.049ms +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:33:45] [debug] [ nRF52] - read_device_family +[2023-Jun-02 15:33:45] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 349 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:33:45] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.132ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.350ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.000ms returns 0x00 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 15:33:45] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:33:45] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.331ms returns 0x00 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 15:33:45] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:33:45] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:33:45] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 15:33:45] [trace] [ JLink] - InitTarget() end - Took 1.63ms +[2023-Jun-02 15:33:45] [trace] [ JLink] - InitTarget() end - Took 1.63ms +[2023-Jun-02 15:33:45] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:33:45] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:33:45] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:33:45] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:33:45] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:33:45] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:33:45] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:33:45] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:33:45] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:33:45] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:33:45] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:33:45] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:33:45] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:33:45] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:33:45] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:33:45] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:33:45] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:33:45] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 15:33:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:33:45] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:33:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:33:45] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:33:45] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:33:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:33:45] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:33:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:33:45] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:33:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:33:45] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:33:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:33:45] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:33:45] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:33:45] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:33:45] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:33:45] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:33:45] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 15:33:45] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 15:33:45] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:33:45] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:33:45] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 15:33:45] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:33:45] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:33:45] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 15:33:45] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:33:45] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:33:45] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 15:33:45] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:33:45] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:33:45] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 15:33:45] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:33:45] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:33:45] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 15:33:45] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:33:45] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 12.916ms returns 0x00 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.003ms returns 0xE0000FF +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:33:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:33:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:33:45] [trace] [ Client] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:33:45] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:33:45] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.348ms returns 1 (0x1) +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.021ms +[2023-Jun-02 15:33:45] [trace] [ Worker] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:33:45] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:33:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.362ms returns 1 (0x1) +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:33:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.024ms +[2023-Jun-02 15:33:45] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:33:45] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.309ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.283ms returns 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.004ms returns TRUE +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.016ms returns 0x00 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:33:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:33:45] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.369ms returns 1 (0x1) +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.015ms returns 0x00 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:33:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:33:45] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:33:45] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:33:45] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:33:45] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:33:45] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:33:45] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:33:45] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:33:45] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:33:45] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:33:45] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:33:45] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:33:45] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:33:45] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.388ms returns 1 (0x1) +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.032ms +[2023-Jun-02 15:33:45] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 15:33:45] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:33:45] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:33:45] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:33:45] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:33:45] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:33:45] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:33:45] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:33:45] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:33:45] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:33:45] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:33:45] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:45] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:33:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:45] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:33:45] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:33:45] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:46] [debug] [ Client] - erase +[2023-Jun-02 15:33:46] [debug] [ nRF52] - erase_file +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.007ms returns 0x01 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:46] [trace] [ Client] - Command erase_file executed for 1 milliseconds with result 0 +[2023-Jun-02 15:33:46] [debug] [ Client] - program +[2023-Jun-02 15:33:46] [debug] [ nRF52] - erase +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 1.167ms +[2023-Jun-02 15:33:46] [trace] [ Worker] - Command erase_file executed for 1 milliseconds with result 0 +[2023-Jun-02 15:33:46] [debug] [ nRF52] - program +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:46] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 15:33:46] [debug] [ nRF52] - program_file +[2023-Jun-02 15:33:46] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 15:33:46] [ info] [ nRF52] - Check program file +[2023-Jun-02 15:33:46] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:33:46] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:33:46] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:33:46] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:33:46] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:33:46] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:33:46] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:33:46] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:33:46] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:33:46] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.288ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 3.260ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.611ms returns 0 (0x00000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:33:46] [debug] [ nRF52] - disable_bprot +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.153ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.385ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:33:46] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:33:46] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:33:46] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 64.254ms +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:33:46] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:33:46] [ info] [ nRF52] - Program flash. +[2023-Jun-02 15:33:46] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:33:46] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_write +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - write +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.568ms returns 0 (0x00000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_WriteMem(19816 bytes @ 0x00000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 129.357ms returns 0x4D68 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:33:46] [trace] [ Client] - Command program_file executed for 223 milliseconds with result 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.382ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.331ms returns 0 (0x00000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:33:46] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":132,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.017ms +[2023-Jun-02 15:33:46] [trace] [ Worker] - Command program_file executed for 223 milliseconds with result 0 +[2023-Jun-02 15:33:46] [debug] [ Client] - verify +[2023-Jun-02 15:33:46] [debug] [ nRF52] - verify +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.004ms returns 0x01 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:46] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 15:33:46] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 15:33:46] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:33:46] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:33:46] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.268ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:33:46] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:33:46] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:33:46] [ info] [ nRF52] - Verify +[2023-Jun-02 15:33:46] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 15:33:46] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:33:46] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:33:46] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:33:46] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:33:46] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":276,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:33:46] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:33:46] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:33:46] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 15:33:46] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:33:46] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:33:46] [debug] [ nRF52] - Just_read +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - read +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_ReadMem(19840 bytes @ 0x00000000) +[2023-Jun-02 15:33:46] [trace] [ Client] - Command verify_file executed for 143 milliseconds with result -160 +[2023-Jun-02 15:33:46] [trace] [ JLink] - -- Updating C cache (19840 bytes @ 0x00000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - -- Read from C cache (19816 bytes @ 0x00000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 132.765ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [error] [ nRF52] - Data does not match in address range [0x00000000-0x00004D68] (Flash) +[2023-Jun-02 15:33:46] [ info] [ nRF52] - {"amountOfSteps":0,"description":"Verifying image","message":"Data does not match in address range [0x00000000-0x00004D68] (Flash)","operation":"verify_image","progressPercentage":0,"result":"fail","step":0} +[2023-Jun-02 15:33:46] [error] [ nRF52] - Expected byte value 0x38 but read 0x00 at address 0x00000414. +[2023-Jun-02 15:33:46] [ info] [ nRF52] - {"amountOfSteps":0,"description":"Verifying image","message":"Expected byte value 0x38 but read 0x00 at address 0x00000414.","operation":"verify_image","progressPercentage":0,"result":"fail","step":0} +[2023-Jun-02 15:33:46] [error] [ nRF52] - Flash verification failed. +[2023-Jun-02 15:33:46] [error] [ nRF52] - Failed while verifying file zephyr.hex. +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.023ms +[2023-Jun-02 15:33:46] [trace] [ Worker] - Command verify_file executed for 143 milliseconds with result -160 +[2023-Jun-02 15:33:46] [debug] [ nRF52] - close +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - close +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_WriteU32_64(0xE000EDFC, 0x00000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - Debug reg: DEMCR +[2023-Jun-02 15:33:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:33:46] [trace] [ JLink] - - 0.330ms returns 0 (0x00000000) +[2023-Jun-02 15:33:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - Shortcut, lock is on and debug region is powered. +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - unpower_debug_and_system_regions +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:33:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:33:49] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:33:49] [debug] nrfjprog -f nrf52 --program zephyr.hex --verify --log +[2023-Jun-02 15:33:49] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 15:33:49] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:33:49] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 15:33:49] [ info] Library loaded, loading member functions. +[2023-Jun-02 15:33:49] [ info] Member functions succesfully loaded. +[2023-Jun-02 15:33:49] [debug] [ Client] - open +[2023-Jun-02 15:33:49] [debug] [ Client] - start +[2023-Jun-02 15:33:49] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence f8120fbf-f439-4723-8155-e7b93417b786. +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 15:33:49] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 15:33:49] [debug] [ nRF52] - open +[2023-Jun-02 15:33:49] [debug] [ nRF52] - just_check_family +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 15:33:49] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 15:33:49] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:33:49] [debug] [ Client] - config +[2023-Jun-02 15:33:49] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:49] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 15:33:49] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 15:33:49] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 15:33:49] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 15:33:49] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:33:49] [debug] [ nRF52] - config +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 15:33:49] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:49] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 15:33:49] [trace] [ Client] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 15:33:49] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:49] [trace] [ Worker] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 15:33:49] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 15:33:49] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:33:49] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:33:49] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 15:33:49] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 15:33:49] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 15:33:49] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 15:33:49] [trace] [ Client] - Command connect_to_emu_with_snr executed for 318 milliseconds with result 0 +[2023-Jun-02 15:33:49] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 15:33:49] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:49] [debug] [ Client] - read_device_info +[2023-Jun-02 15:33:49] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 15:33:49] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 15:33:49] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 15:33:49] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 15:33:49] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:33:49] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:33:49] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 18.907ms returns "O.K." +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.002ms returns 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.423ms returns 0x00 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 15:33:49] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.055ms +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:33:49] [debug] [ nRF52] - read_device_family +[2023-Jun-02 15:33:49] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 318 milliseconds with result 0 +[2023-Jun-02 15:33:49] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:33:49] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:49] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:49] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:33:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:33:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.131ms returns 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.395ms returns 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 15:33:49] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:33:49] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 15:33:49] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:33:49] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.210ms returns 0x00 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 15:33:49] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:33:49] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:33:49] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 15:33:49] [trace] [ JLink] - InitTarget() end - Took 1.72ms +[2023-Jun-02 15:33:49] [trace] [ JLink] - InitTarget() end - Took 1.72ms +[2023-Jun-02 15:33:49] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:33:49] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:33:49] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:33:49] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:33:49] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:33:49] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:33:49] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:33:49] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:33:49] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:33:49] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:33:49] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:33:49] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:33:49] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:33:49] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:33:49] [trace] [ Client] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 15:33:49] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:33:49] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:33:49] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:33:49] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:33:49] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:33:49] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 15:33:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:33:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:33:49] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:33:49] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:33:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:33:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:33:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:33:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:33:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:33:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:33:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:33:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:33:49] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:33:49] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:33:49] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:33:49] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:33:49] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 15:33:49] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 15:33:49] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:33:49] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:33:49] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 15:33:49] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:33:49] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:33:49] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 15:33:49] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:33:49] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:33:49] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 15:33:49] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:33:49] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:33:49] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 15:33:49] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:33:49] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:33:49] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 15:33:49] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:33:49] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 12.707ms returns 0x00 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.001ms returns 0xE0000FF +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:33:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:33:49] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:33:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:33:49] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:33:49] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 15:33:49] [trace] [ Worker] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 15:33:49] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:49] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:33:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:33:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:33:49] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:49] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:33:50] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:33:50] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:33:50] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:33:50] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:33:50] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:33:50] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:33:50] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:33:50] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:33:50] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:33:50] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:33:50] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:33:50] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:33:50] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:33:50] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.289ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.277ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.026ms +[2023-Jun-02 15:33:50] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:33:50] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.269ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.012ms +[2023-Jun-02 15:33:50] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:33:50] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:33:50] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:33:50] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:33:50] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:33:50] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:33:50] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:33:50] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:33:50] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:33:50] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:33:50] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:33:50] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:33:50] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ Client] - erase +[2023-Jun-02 15:33:50] [trace] [ Client] - Command erase_file executed for 1 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ Client] - program +[2023-Jun-02 15:33:50] [debug] [ nRF52] - erase_file +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.007ms returns 0x01 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - erase +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 1.357ms +[2023-Jun-02 15:33:50] [trace] [ Worker] - Command erase_file executed for 1 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - program +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:50] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 15:33:50] [debug] [ nRF52] - program_file +[2023-Jun-02 15:33:50] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 15:33:50] [ info] [ nRF52] - Check program file +[2023-Jun-02 15:33:50] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:33:50] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:33:50] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:33:50] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:33:50] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:33:50] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:33:50] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:33:50] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:33:50] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 3.320ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":8,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:33:50] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:33:50] [ info] [ nRF52] - Program flash. +[2023-Jun-02 15:33:50] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:33:50] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_write +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - write +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.611ms returns 0 (0x00000000) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_WriteMem(19816 bytes @ 0x00000000) +[2023-Jun-02 15:33:50] [trace] [ Client] - Command program_file executed for 147 milliseconds with result 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 129.411ms returns 0x4D68 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.323ms returns 0 (0x00000000) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:33:50] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":132,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.018ms +[2023-Jun-02 15:33:50] [trace] [ Worker] - Command program_file executed for 147 milliseconds with result 0 +[2023-Jun-02 15:33:50] [debug] [ Client] - verify +[2023-Jun-02 15:33:50] [debug] [ nRF52] - verify +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.004ms returns 0x01 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:33:50] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 15:33:50] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 15:33:50] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:33:50] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:33:50] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:33:50] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.268ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:33:50] [ info] [ nRF52] - Verify +[2023-Jun-02 15:33:50] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 15:33:50] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:33:50] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:33:50] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:33:50] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:33:50] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":200,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:33:50] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:33:50] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:33:50] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 15:33:50] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:33:50] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:33:50] [debug] [ nRF52] - Just_read +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - read +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 15:33:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:33:50] [trace] [ JLink] - CPU_ReadMem(19840 bytes @ 0x00000000) +[2023-Jun-02 15:33:50] [trace] [ Client] - Command verify_file executed for 142 milliseconds with result -160 +[2023-Jun-02 15:33:50] [trace] [ JLink] - -- Updating C cache (19840 bytes @ 0x00000000) +[2023-Jun-02 15:33:50] [trace] [ JLink] - -- Read from C cache (19816 bytes @ 0x00000000) +[2023-Jun-02 15:33:50] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 132.806ms returns 0 +[2023-Jun-02 15:33:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:33:50] [error] [ nRF52] - Data does not match in address range [0x00000000-0x00004D68] (Flash) +[2023-Jun-02 15:33:50] [ info] [ nRF52] - {"amountOfSteps":0,"description":"Verifying image","message":"Data does not match in address range [0x00000000-0x00004D68] (Flash)","operation":"verify_image","progressPercentage":0,"result":"fail","step":0} +[2023-Jun-02 15:33:50] [error] [ nRF52] - Expected byte value 0xF6 but read 0xF4 at address 0x0000040B. +[2023-Jun-02 15:33:50] [ info] [ nRF52] - {"amountOfSteps":0,"description":"Verifying image","message":"Expected byte value 0xF6 but read 0xF4 at address 0x0000040B.","operation":"verify_image","progressPercentage":0,"result":"fail","step":0} +[2023-Jun-02 15:33:50] [error] [ nRF52] - Flash verification failed. +[2023-Jun-02 15:33:50] [error] [ nRF52] - Failed while verifying file zephyr.hex. +[2023-Jun-02 15:33:50] [trace] [ JLink] - - 0.046ms +[2023-Jun-02 15:46:56] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:46:56] [debug] nrfjprog -f nrf52 --program zephyr.hex --verify --log +[2023-Jun-02 15:46:56] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 15:46:56] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:46:56] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 15:46:56] [ info] Library loaded, loading member functions. +[2023-Jun-02 15:46:56] [ info] Member functions succesfully loaded. +[2023-Jun-02 15:46:56] [debug] [ Client] - open +[2023-Jun-02 15:46:56] [debug] [ Client] - start +[2023-Jun-02 15:46:56] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence 47fb5634-56e1-4315-aca0-5e7df4f6fe87. +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 15:46:56] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 15:46:56] [debug] [ nRF52] - open +[2023-Jun-02 15:46:56] [debug] [ nRF52] - just_check_family +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 15:46:56] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ Client] - config +[2023-Jun-02 15:46:56] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 15:46:56] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 15:46:56] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 15:46:56] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 15:46:56] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 15:46:56] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - config +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 15:46:56] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 15:46:56] [trace] [ Client] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:46:56] [trace] [ Worker] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 15:46:56] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:46:56] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:46:56] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 15:46:56] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 15:46:56] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 15:46:56] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 15:46:56] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 15:46:56] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 15:46:56] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 15:46:56] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:46:56] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:46:56] [trace] [ Client] - Command connect_to_emu_with_snr executed for 342 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 15:46:56] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ Client] - read_device_info +[2023-Jun-02 15:46:56] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 29.687ms returns "O.K." +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.002ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.426ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 15:46:56] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.050ms +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:46:56] [debug] [ nRF52] - read_device_family +[2023-Jun-02 15:46:56] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 342 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:46:56] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.131ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.346ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.000ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:46:56] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.268ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 15:46:56] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:46:56] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:46:56] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 15:46:56] [trace] [ JLink] - InitTarget() end - Took 1.67ms +[2023-Jun-02 15:46:56] [trace] [ JLink] - InitTarget() end - Took 1.67ms +[2023-Jun-02 15:46:56] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:46:56] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:46:56] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:46:56] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:46:56] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:46:56] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:46:56] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:46:56] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:46:56] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:46:56] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:46:56] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:46:56] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:46:56] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:46:56] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:46:56] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:46:56] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:46:56] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:46:56] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 15:46:56] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:46:56] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 15:46:56] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:46:56] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 15:46:56] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:46:56] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 15:46:56] [trace] [ Client] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:46:56] [trace] [ Client] - Command read_memory_descriptors executed for 6 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:46:56] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:46:56] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 15:46:56] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:46:56] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 15:46:56] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:46:56] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 13.295ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.003ms returns 0xE0000FF +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.348ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.037ms +[2023-Jun-02 15:46:56] [trace] [ Worker] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.273ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:46:56] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.269ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.281ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.329ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.252ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.304ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.005ms returns TRUE +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.010ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.089ms +[2023-Jun-02 15:46:56] [trace] [ Worker] - Command read_memory_descriptors executed for 6 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.004ms returns 0x01 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:46:56] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:46:56] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:46:56] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:46:56] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:46:56] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:46:56] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:46:56] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:46:56] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:46:56] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:46:56] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:46:56] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:46:56] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:46:56] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.006ms returns TRUE +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.359ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.057ms +[2023-Jun-02 15:46:56] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.006ms +[2023-Jun-02 15:46:56] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.006ms +[2023-Jun-02 15:46:56] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.008ms +[2023-Jun-02 15:46:56] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.005ms +[2023-Jun-02 15:46:56] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.006ms +[2023-Jun-02 15:46:56] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.006ms +[2023-Jun-02 15:46:56] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.006ms +[2023-Jun-02 15:46:56] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.006ms +[2023-Jun-02 15:46:56] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.006ms +[2023-Jun-02 15:46:56] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.006ms +[2023-Jun-02 15:46:56] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.006ms +[2023-Jun-02 15:46:56] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.014ms returns 0x01 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.005ms +[2023-Jun-02 15:46:56] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ Client] - erase +[2023-Jun-02 15:46:56] [trace] [ Client] - Command erase_file executed for 1 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ Client] - program +[2023-Jun-02 15:46:56] [debug] [ nRF52] - erase_file +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - erase +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 1.462ms +[2023-Jun-02 15:46:56] [trace] [ Worker] - Command erase_file executed for 1 milliseconds with result 0 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - program +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:46:56] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 15:46:56] [debug] [ nRF52] - program_file +[2023-Jun-02 15:46:56] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 15:46:56] [ info] [ nRF52] - Check program file +[2023-Jun-02 15:46:56] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:46:56] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.276ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:46:56] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:46:56] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:46:56] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:46:56] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:46:56] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:46:56] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:46:56] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.380ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.364ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.291ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 3.248ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.610ms returns 0 (0x00000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:46:56] [debug] [ nRF52] - disable_bprot +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.371ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:46:56] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:46:56] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:46:56] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 64.349ms +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.260ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:46:56] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:46:56] [ info] [ nRF52] - Program flash. +[2023-Jun-02 15:46:56] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:46:56] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_write +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - write +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 1.016ms returns 0 (0x00000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_WriteMem(19816 bytes @ 0x00000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 129.926ms returns 0x4D68 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.307ms returns 0 (0x00000000) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:56] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:46:56] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:46:56] [trace] [ Client] - Command program_file executed for 225 milliseconds with result 0 +[2023-Jun-02 15:46:56] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:46:56] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:56] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:46:56] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":133,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:46:56] [trace] [ JLink] - - 0.016ms +[2023-Jun-02 15:46:56] [trace] [ Worker] - Command program_file executed for 225 milliseconds with result 0 +[2023-Jun-02 15:46:57] [debug] [ Client] - verify +[2023-Jun-02 15:46:57] [debug] [ nRF52] - verify +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:46:57] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 15:46:57] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 15:46:57] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 15:46:57] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:46:57] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:46:57] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:46:57] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:46:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:46:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.284ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:46:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:46:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:46:57] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:46:57] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:46:57] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:46:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:46:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:46:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:46:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:46:57] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:46:57] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:46:57] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:46:57] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:46:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:46:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:46:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:46:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:46:57] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:46:57] [ info] [ nRF52] - Verify +[2023-Jun-02 15:46:57] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 15:46:57] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:46:57] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:46:57] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:46:57] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:46:57] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:46:57] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":277,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:46:57] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:46:57] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:46:57] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 15:46:57] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:46:57] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:46:57] [debug] [ nRF52] - Just_read +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - read +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:46:57] [trace] [ JLink] - CPU_ReadMem(19840 bytes @ 0x00000000) +[2023-Jun-02 15:46:57] [trace] [ Client] - Command verify_file executed for 142 milliseconds with result 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - -- Updating C cache (19840 bytes @ 0x00000000) +[2023-Jun-02 15:46:57] [trace] [ JLink] - -- Read from C cache (19816 bytes @ 0x00000000) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 132.685ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:46:57] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":132,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.026ms +[2023-Jun-02 15:46:57] [trace] [ Worker] - Command verify_file executed for 142 milliseconds with result 0 +[2023-Jun-02 15:46:57] [debug] [ nRF52] - close +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - close +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.264ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_WriteU32_64(0xE000EDFC, 0x00000000) +[2023-Jun-02 15:46:57] [trace] [ JLink] - Debug reg: DEMCR +[2023-Jun-02 15:46:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.303ms returns 0 (0x00000000) +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - Shortcut, lock is on and debug region is powered. +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - unpower_debug_and_system_regions +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x01, 0x00000000) +[2023-Jun-02 15:46:57] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:46:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:46:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:26] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:47:26] [debug] nrfjprog -f nrf52 --program zephyr.hex --verify --log --reset +[2023-Jun-02 15:47:26] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 15:47:26] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:47:26] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 15:47:26] [ info] Library loaded, loading member functions. +[2023-Jun-02 15:47:26] [ info] Member functions succesfully loaded. +[2023-Jun-02 15:47:26] [debug] [ Client] - open +[2023-Jun-02 15:47:26] [debug] [ Client] - start +[2023-Jun-02 15:47:26] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence 8d56c43a-47b4-42ec-bf4c-ab6ebe2beb77. +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 15:47:26] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 15:47:26] [debug] [ nRF52] - open +[2023-Jun-02 15:47:26] [debug] [ nRF52] - just_check_family +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 15:47:26] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ Client] - config +[2023-Jun-02 15:47:26] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 15:47:26] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 15:47:26] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 15:47:26] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 15:47:26] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 15:47:26] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - config +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 15:47:26] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 15:47:26] [trace] [ Client] - Command enum_emu_con_info executed for 101 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:26] [trace] [ Worker] - Command enum_emu_con_info executed for 101 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 15:47:26] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:47:26] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:47:26] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 15:47:26] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 15:47:26] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 15:47:26] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 15:47:26] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 15:47:26] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 15:47:26] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 15:47:26] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:47:26] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:47:26] [trace] [ Client] - Command connect_to_emu_with_snr executed for 334 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 15:47:26] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ Client] - read_device_info +[2023-Jun-02 15:47:26] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 28.592ms returns "O.K." +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.002ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.450ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 15:47:26] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.050ms +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:26] [debug] [ nRF52] - read_device_family +[2023-Jun-02 15:47:26] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 334 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:26] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.087ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.347ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:47:26] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.240ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 15:47:26] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:47:26] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:47:26] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 15:47:26] [trace] [ JLink] - InitTarget() end - Took 1.70ms +[2023-Jun-02 15:47:26] [trace] [ JLink] - InitTarget() end - Took 1.70ms +[2023-Jun-02 15:47:26] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:47:26] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:47:26] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:47:26] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:47:26] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:47:26] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:47:26] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:47:26] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:47:26] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:47:26] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:47:26] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:47:26] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:47:26] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:47:26] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:47:26] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:47:26] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:47:26] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:47:26] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 15:47:26] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:47:26] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 15:47:26] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:47:26] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 15:47:26] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:47:26] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 15:47:26] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:47:26] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 15:47:26] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:47:26] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 15:47:26] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:47:26] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 12.957ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.002ms returns 0xE0000FF +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:26] [trace] [ Client] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:47:26] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.358ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 15:47:26] [trace] [ Worker] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:26] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.024ms +[2023-Jun-02 15:47:26] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:26] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:26] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:26] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:26] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:26] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:26] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:26] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:26] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:26] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:26] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:26] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:26] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:26] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:26] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.012ms +[2023-Jun-02 15:47:26] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:26] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:26] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:26] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:26] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:26] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:26] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:26] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:26] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:26] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:26] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:26] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:26] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ Client] - erase +[2023-Jun-02 15:47:26] [trace] [ Client] - Command erase_file executed for 1 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ Client] - program +[2023-Jun-02 15:47:26] [debug] [ nRF52] - erase_file +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - erase +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 1.055ms +[2023-Jun-02 15:47:26] [trace] [ Worker] - Command erase_file executed for 1 milliseconds with result 0 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - program +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:26] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 15:47:26] [debug] [ nRF52] - program_file +[2023-Jun-02 15:47:26] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 15:47:26] [ info] [ nRF52] - Check program file +[2023-Jun-02 15:47:26] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:47:26] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.362ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.273ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.261ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.305ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:47:26] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:47:26] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:47:26] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:47:26] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:47:26] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:47:26] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:47:26] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 3.254ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.601ms returns 0 (0x00000000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:47:26] [debug] [ nRF52] - disable_bprot +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:47:26] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:47:26] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:47:26] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 65.213ms +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:26] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:47:26] [ info] [ nRF52] - Program flash. +[2023-Jun-02 15:47:26] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:47:26] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_write +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - write +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.624ms returns 0 (0x00000000) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:47:26] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:26] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:47:26] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:47:26] [trace] [ JLink] - CPU_WriteMem(19816 bytes @ 0x00000000) +[2023-Jun-02 15:47:27] [trace] [ Client] - Command program_file executed for 224 milliseconds with result 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 129.396ms returns 0x4D68 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:47:27] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.351ms returns 1 (0x1) +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:47:27] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.354ms returns 0 (0x00000000) +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:47:27] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.389ms returns 1 (0x1) +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:47:27] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":132,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 15:47:27] [trace] [ Worker] - Command program_file executed for 224 milliseconds with result 0 +[2023-Jun-02 15:47:27] [debug] [ Client] - verify +[2023-Jun-02 15:47:27] [debug] [ nRF52] - verify +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.007ms returns 0x01 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:27] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 15:47:27] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 15:47:27] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:47:27] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:47:27] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.260ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.290ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.293ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.306ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.404ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.285ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.340ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.379ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.009ms returns TRUE +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.015ms returns 0x00 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:27] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.462ms returns 1 (0x1) +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:27] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:27] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:27] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:27] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:47:27] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:27] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:27] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:27] [ info] [ nRF52] - Verify +[2023-Jun-02 15:47:27] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 15:47:27] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:47:27] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:47:27] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:47:27] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:47:27] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":279,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:47:27] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:47:27] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:47:27] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 15:47:27] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:47:27] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Just_read +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:47:27] [trace] [ JLink] - CPU_ReadMem(19840 bytes @ 0x00000000) +[2023-Jun-02 15:47:27] [trace] [ Client] - Command verify_file executed for 145 milliseconds with result 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - -- Updating C cache (19840 bytes @ 0x00000000) +[2023-Jun-02 15:47:27] [trace] [ JLink] - -- Read from C cache (19816 bytes @ 0x00000000) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 132.777ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:47:27] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":132,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.026ms +[2023-Jun-02 15:47:27] [trace] [ Worker] - Command verify_file executed for 145 milliseconds with result 0 +[2023-Jun-02 15:47:27] [debug] [ Client] - sys_reset +[2023-Jun-02 15:47:27] [debug] [ nRF52] - sys_reset +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.311ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.261ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.289ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 15:47:27] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:27] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:47:27] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:47:27] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:47:27] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:47:27] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 15:47:27] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:27] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:27] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:27] [trace] [ Client] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 15:47:27] [debug] [ Client] - go +[2023-Jun-02 15:47:27] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:27] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:47:27] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:27] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 63.701ms +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:27] [trace] [ Worker] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 15:47:27] [debug] [ nRF52] - go +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Just_go +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:27] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.269ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - go +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 15:47:27] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:47:27] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 1.079ms +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:27] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 15:47:27] [debug] [ nRF52] - close +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - close +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_WriteU32_64(0xE000EDFC, 0x00000000) +[2023-Jun-02 15:47:27] [trace] [ JLink] - Debug reg: DEMCR +[2023-Jun-02 15:47:27] [trace] [ JLink] - CPU is running +[2023-Jun-02 15:47:27] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.325ms returns 0 (0x00000000) +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - Shortcut, lock is on and debug region is powered. +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - unpower_debug_and_system_regions +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x01, 0x00000000) +[2023-Jun-02 15:47:27] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:47:27] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:27] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:36] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:47:36] [debug] nrfjprog -f nrf52 --program zephyr.hex --verify --log --reset +[2023-Jun-02 15:47:36] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 15:47:36] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:47:36] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 15:47:36] [ info] Library loaded, loading member functions. +[2023-Jun-02 15:47:36] [ info] Member functions succesfully loaded. +[2023-Jun-02 15:47:36] [debug] [ Client] - open +[2023-Jun-02 15:47:36] [debug] [ Client] - start +[2023-Jun-02 15:47:36] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence 157cb480-f3b8-48e3-a47d-c7e69062c0ee. +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 15:47:36] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 15:47:36] [debug] [ nRF52] - open +[2023-Jun-02 15:47:36] [debug] [ nRF52] - just_check_family +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 15:47:36] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ Client] - config +[2023-Jun-02 15:47:36] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 15:47:36] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 15:47:36] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 15:47:36] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 15:47:36] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 15:47:36] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - config +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 15:47:36] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 15:47:36] [trace] [ Client] - Command enum_emu_con_info executed for 105 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:36] [trace] [ Worker] - Command enum_emu_con_info executed for 105 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 15:47:36] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:47:36] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:47:36] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 15:47:36] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 15:47:36] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 15:47:36] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 15:47:36] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 15:47:36] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 15:47:36] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 15:47:36] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:47:36] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:47:36] [trace] [ Client] - Command connect_to_emu_with_snr executed for 350 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 15:47:36] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ Client] - read_device_info +[2023-Jun-02 15:47:36] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 31.972ms returns "O.K." +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.003ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.451ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 15:47:36] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.054ms +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:36] [debug] [ nRF52] - read_device_family +[2023-Jun-02 15:47:36] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 350 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:36] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.137ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.354ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.268ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:47:36] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.250ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 15:47:36] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:47:36] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:47:36] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 15:47:36] [trace] [ JLink] - InitTarget() end - Took 1.67ms +[2023-Jun-02 15:47:36] [trace] [ JLink] - InitTarget() end - Took 1.67ms +[2023-Jun-02 15:47:36] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:47:36] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:47:36] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:47:36] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:47:36] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:47:36] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:47:36] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:47:36] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:47:36] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:47:36] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:47:36] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:47:36] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:47:36] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:47:36] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:47:36] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:47:36] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:47:36] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:47:36] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 15:47:36] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:47:36] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 15:47:36] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:47:36] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 15:47:36] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:47:36] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 15:47:36] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:47:36] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 15:47:36] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:47:36] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 15:47:36] [trace] [ Client] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:47:36] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:47:36] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:47:36] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 12.963ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0xE0000FF +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 15:47:36] [trace] [ Worker] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:36] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.021ms +[2023-Jun-02 15:47:36] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.264ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:36] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.003ms returns TRUE +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:36] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:36] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:36] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:36] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:36] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:36] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:36] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:36] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:36] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:36] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:36] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:36] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:36] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.017ms +[2023-Jun-02 15:47:36] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:36] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:36] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:36] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:36] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:36] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:36] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:36] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:36] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:36] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:36] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:36] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:36] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ Client] - erase +[2023-Jun-02 15:47:36] [trace] [ Client] - Command erase_file executed for 1 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ Client] - program +[2023-Jun-02 15:47:36] [debug] [ nRF52] - erase_file +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.008ms returns 0x01 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - erase +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 1.152ms +[2023-Jun-02 15:47:36] [trace] [ Worker] - Command erase_file executed for 1 milliseconds with result 0 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - program +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:36] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 15:47:36] [debug] [ nRF52] - program_file +[2023-Jun-02 15:47:36] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 15:47:36] [ info] [ nRF52] - Check program file +[2023-Jun-02 15:47:36] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:47:36] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.276ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:47:36] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:47:36] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:47:36] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:47:36] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:47:36] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:47:36] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:47:36] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.370ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 3.381ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.577ms returns 0 (0x00000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:47:36] [debug] [ nRF52] - disable_bprot +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.252ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:47:36] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:47:36] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:47:36] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 63.839ms +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:36] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:47:36] [ info] [ nRF52] - Program flash. +[2023-Jun-02 15:47:36] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:47:36] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_write +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - write +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.628ms returns 0 (0x00000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_WriteMem(19816 bytes @ 0x00000000) +[2023-Jun-02 15:47:36] [trace] [ Client] - Command program_file executed for 222 milliseconds with result 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 129.498ms returns 0x4D68 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.340ms returns 0 (0x00000000) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:47:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:47:36] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:47:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:36] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:47:36] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":132,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:47:36] [trace] [ JLink] - - 0.016ms +[2023-Jun-02 15:47:36] [trace] [ Worker] - Command program_file executed for 222 milliseconds with result 0 +[2023-Jun-02 15:47:37] [debug] [ Client] - verify +[2023-Jun-02 15:47:37] [debug] [ nRF52] - verify +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.007ms returns 0x01 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:37] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 15:47:37] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 15:47:37] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 15:47:37] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:47:37] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:47:37] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:47:37] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.149ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:37] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:37] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:47:37] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:37] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:37] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:47:37] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:47:37] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:37] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:37] [ info] [ nRF52] - Verify +[2023-Jun-02 15:47:37] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 15:47:37] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:47:37] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:47:37] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:47:37] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:47:37] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:47:37] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":275,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:47:37] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:47:37] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:47:37] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 15:47:37] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:47:37] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:47:37] [debug] [ nRF52] - Just_read +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:47:37] [trace] [ JLink] - CPU_ReadMem(19840 bytes @ 0x00000000) +[2023-Jun-02 15:47:37] [trace] [ Client] - Command verify_file executed for 142 milliseconds with result 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - -- Updating C cache (19840 bytes @ 0x00000000) +[2023-Jun-02 15:47:37] [trace] [ JLink] - -- Read from C cache (19816 bytes @ 0x00000000) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 132.632ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:47:37] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":132,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.023ms +[2023-Jun-02 15:47:37] [trace] [ Worker] - Command verify_file executed for 142 milliseconds with result 0 +[2023-Jun-02 15:47:37] [debug] [ Client] - sys_reset +[2023-Jun-02 15:47:37] [debug] [ nRF52] - sys_reset +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.028ms returns 0x01 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:37] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 15:47:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.287ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.006ms returns TRUE +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.009ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 15:47:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:47:37] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:47:37] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:47:37] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:47:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 15:47:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:37] [trace] [ Client] - Command sys_reset executed for 67 milliseconds with result 0 +[2023-Jun-02 15:47:37] [debug] [ Client] - go +[2023-Jun-02 15:47:37] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:47:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 64.056ms +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 15:47:37] [trace] [ Worker] - Command sys_reset executed for 67 milliseconds with result 0 +[2023-Jun-02 15:47:37] [debug] [ nRF52] - go +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:37] [debug] [ nRF52] - Just_go +[2023-Jun-02 15:47:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - go +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 15:47:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:47:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 1.057ms +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:37] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 15:47:37] [debug] [ nRF52] - close +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - close +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_WriteU32_64(0xE000EDFC, 0x00000000) +[2023-Jun-02 15:47:37] [trace] [ JLink] - Debug reg: DEMCR +[2023-Jun-02 15:47:37] [trace] [ JLink] - CPU is running +[2023-Jun-02 15:47:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.340ms returns 0 (0x00000000) +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - Shortcut, lock is on and debug region is powered. +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - unpower_debug_and_system_regions +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x01, 0x00000000) +[2023-Jun-02 15:47:37] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 15:47:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:47] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:47:47] [debug] nrfjprog -f nrf52 --program zephyr.hex --verify --log --reset +[2023-Jun-02 15:47:47] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 15:47:47] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:47:47] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 15:47:47] [ info] Library loaded, loading member functions. +[2023-Jun-02 15:47:47] [ info] Member functions succesfully loaded. +[2023-Jun-02 15:47:47] [debug] [ Client] - open +[2023-Jun-02 15:47:47] [debug] [ Client] - start +[2023-Jun-02 15:47:47] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence d3330c78-3c1a-42f2-9474-a031da40c279. +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 15:47:47] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 15:47:47] [debug] [ nRF52] - open +[2023-Jun-02 15:47:47] [debug] [ nRF52] - just_check_family +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 15:47:47] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 15:47:47] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ Client] - config +[2023-Jun-02 15:47:47] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 15:47:47] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 15:47:47] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 15:47:47] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 15:47:47] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - config +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 15:47:47] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 15:47:47] [trace] [ Client] - Command enum_emu_con_info executed for 106 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:47] [trace] [ Worker] - Command enum_emu_con_info executed for 106 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 15:47:47] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:47:47] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:47:47] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 15:47:47] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 15:47:47] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 15:47:47] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 15:47:47] [trace] [ Client] - Command connect_to_emu_with_snr executed for 354 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 15:47:47] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ Client] - read_device_info +[2023-Jun-02 15:47:47] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 15:47:47] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 15:47:47] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 15:47:47] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:47:47] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:47:47] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 27.876ms returns "O.K." +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.000ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.003ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.454ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 15:47:47] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.049ms +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.002ms returns 2000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:47] [debug] [ nRF52] - read_device_family +[2023-Jun-02 15:47:47] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 354 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:47] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.126ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.350ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:47:47] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.420ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 15:47:47] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:47:47] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:47:47] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 15:47:47] [trace] [ JLink] - InitTarget() end - Took 1.67ms +[2023-Jun-02 15:47:47] [trace] [ JLink] - InitTarget() end - Took 1.67ms +[2023-Jun-02 15:47:47] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:47:47] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:47:47] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:47:47] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:47:47] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:47:47] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:47:47] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:47:47] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:47:47] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:47:47] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:47:47] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:47:47] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:47:47] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:47:47] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:47:47] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:47:47] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:47] [trace] [ Client] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:47:47] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:47:47] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 15:47:47] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:47:47] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 15:47:47] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:47:47] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 15:47:47] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:47:47] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 15:47:47] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:47:47] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 15:47:47] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:47:47] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 15:47:47] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:47:47] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 13.351ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0xE0000FF +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 15:47:47] [trace] [ Worker] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:47] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:47:47] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:47] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:47] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:47] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:47] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:47] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:47] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:47] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:47] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:47] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:47] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:47] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:47] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.024ms +[2023-Jun-02 15:47:47] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.261ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:47] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.011ms +[2023-Jun-02 15:47:47] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:47] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:47] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:47] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:47] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:47] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:47] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:47] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:47] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:47] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:47] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:47] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:47] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ Client] - erase +[2023-Jun-02 15:47:47] [trace] [ Client] - Command erase_file executed for 1 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ Client] - program +[2023-Jun-02 15:47:47] [debug] [ nRF52] - erase_file +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - erase +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 1.065ms +[2023-Jun-02 15:47:47] [trace] [ Worker] - Command erase_file executed for 1 milliseconds with result 0 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - program +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:47] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 15:47:47] [debug] [ nRF52] - program_file +[2023-Jun-02 15:47:47] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 15:47:47] [ info] [ nRF52] - Check program file +[2023-Jun-02 15:47:47] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:47:47] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:47:47] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:47:47] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:47:47] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:47:47] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:47:47] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:47:47] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:47:47] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.269ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 3.255ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.691ms returns 0 (0x00000000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:47:47] [debug] [ nRF52] - disable_bprot +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:47:47] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:47:47] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:47:47] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 63.651ms +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:47] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:47:47] [ info] [ nRF52] - Program flash. +[2023-Jun-02 15:47:47] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:47:47] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_write +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - write +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.663ms returns 0 (0x00000000) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:47:47] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:47] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:47:47] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:47:47] [trace] [ JLink] - CPU_WriteMem(19816 bytes @ 0x00000000) +[2023-Jun-02 15:47:47] [trace] [ Client] - Command program_file executed for 222 milliseconds with result 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 129.478ms returns 0x4D68 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:47:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.377ms returns 1 (0x1) +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:47:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:47:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:47:48] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":132,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.016ms +[2023-Jun-02 15:47:48] [trace] [ Worker] - Command program_file executed for 222 milliseconds with result 0 +[2023-Jun-02 15:47:48] [debug] [ Client] - verify +[2023-Jun-02 15:47:48] [debug] [ nRF52] - verify +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:48] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 15:47:48] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 15:47:48] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:47:48] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:47:48] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:48] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:47:48] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.267ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:48] [ info] [ nRF52] - Verify +[2023-Jun-02 15:47:48] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 15:47:48] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:47:48] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:47:48] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:47:48] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:47:48] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":275,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:47:48] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:47:48] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:47:48] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 15:47:48] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:47:48] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Just_read +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:47:48] [trace] [ JLink] - CPU_ReadMem(19840 bytes @ 0x00000000) +[2023-Jun-02 15:47:48] [trace] [ Client] - Command verify_file executed for 142 milliseconds with result 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - -- Updating C cache (19840 bytes @ 0x00000000) +[2023-Jun-02 15:47:48] [trace] [ JLink] - -- Read from C cache (19816 bytes @ 0x00000000) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 132.592ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:47:48] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":132,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.026ms +[2023-Jun-02 15:47:48] [trace] [ Worker] - Command verify_file executed for 142 milliseconds with result 0 +[2023-Jun-02 15:47:48] [debug] [ Client] - sys_reset +[2023-Jun-02 15:47:48] [debug] [ nRF52] - sys_reset +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.004ms returns 0x01 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.274ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 15:47:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:47:48] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:47:48] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:47:48] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:47:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 15:47:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:47:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:48] [trace] [ Client] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 15:47:48] [debug] [ Client] - go +[2023-Jun-02 15:47:48] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 64.302ms +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 15:47:48] [trace] [ Worker] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 15:47:48] [debug] [ nRF52] - go +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Just_go +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.153ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - go +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 15:47:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:47:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 1.036ms +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:48] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 15:47:48] [debug] [ nRF52] - close +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - close +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_WriteU32_64(0xE000EDFC, 0x00000000) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Debug reg: DEMCR +[2023-Jun-02 15:47:48] [trace] [ JLink] - CPU is running +[2023-Jun-02 15:47:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.350ms returns 0 (0x00000000) +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - Shortcut, lock is on and debug region is powered. +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - unpower_debug_and_system_regions +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x01, 0x00000000) +[2023-Jun-02 15:47:48] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:48] [trace] [ JLink] - Value=0x00000040 +[2023-Jun-02 15:47:51] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:47:51] [debug] nrfjprog -f nrf52 --program zephyr.hex --verify --log --reset +[2023-Jun-02 15:47:51] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 15:47:51] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:47:51] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 15:47:51] [ info] Library loaded, loading member functions. +[2023-Jun-02 15:47:51] [ info] Member functions succesfully loaded. +[2023-Jun-02 15:47:51] [debug] [ Client] - open +[2023-Jun-02 15:47:51] [debug] [ Client] - start +[2023-Jun-02 15:47:51] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence 8857f8c3-b0be-41a8-ad2b-5b7d5a2697f2. +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 15:47:51] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 15:47:51] [debug] [ nRF52] - open +[2023-Jun-02 15:47:51] [debug] [ nRF52] - just_check_family +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 15:47:51] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 15:47:51] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ Client] - config +[2023-Jun-02 15:47:51] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 15:47:51] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 15:47:51] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 15:47:51] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 15:47:51] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - config +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 15:47:51] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 15:47:51] [trace] [ Client] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:51] [trace] [ Worker] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 15:47:51] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:47:51] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:47:51] [trace] [ Client] - Command connect_to_emu_with_snr executed for 334 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 15:47:51] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ Client] - read_device_info +[2023-Jun-02 15:47:51] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 15:47:51] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 15:47:51] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 15:47:51] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 15:47:51] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 15:47:51] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 15:47:51] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 15:47:51] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:47:51] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:47:51] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 20.324ms returns "O.K." +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.002ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.426ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 15:47:51] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.053ms +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.002ms returns 2000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:51] [debug] [ nRF52] - read_device_family +[2023-Jun-02 15:47:51] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 334 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:51] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.138ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.352ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:47:51] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.203ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 15:47:51] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:47:51] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:47:51] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 15:47:51] [trace] [ JLink] - InitTarget() end - Took 1.70ms +[2023-Jun-02 15:47:51] [trace] [ JLink] - InitTarget() end - Took 1.70ms +[2023-Jun-02 15:47:51] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:47:51] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:47:51] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:47:51] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:47:51] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:47:51] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:47:51] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:47:51] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:47:51] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:47:51] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:47:51] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:47:51] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:47:51] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:47:51] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:47:51] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:47:51] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:47:51] [trace] [ Client] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:47:51] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:47:51] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:47:51] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:47:51] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 15:47:51] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:47:51] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 15:47:51] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:47:51] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 15:47:51] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:47:51] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 15:47:51] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:47:51] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 15:47:51] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:47:51] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 15:47:51] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:47:51] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 12.804ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0xE0000FF +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 15:47:51] [trace] [ Worker] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:51] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.024ms +[2023-Jun-02 15:47:51] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:51] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:51] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:51] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:51] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:51] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:51] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:51] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:51] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:51] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:51] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:51] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:51] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:51] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 15:47:51] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:51] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:51] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:51] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:51] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:51] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:51] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:51] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:51] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:51] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:51] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:51] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:51] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ Client] - erase +[2023-Jun-02 15:47:51] [trace] [ Client] - Command erase_file executed for 1 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ Client] - program +[2023-Jun-02 15:47:51] [debug] [ nRF52] - erase_file +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - erase +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 1.080ms +[2023-Jun-02 15:47:51] [trace] [ Worker] - Command erase_file executed for 1 milliseconds with result 0 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - program +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:51] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 15:47:51] [debug] [ nRF52] - program_file +[2023-Jun-02 15:47:51] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 15:47:51] [ info] [ nRF52] - Check program file +[2023-Jun-02 15:47:51] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:47:51] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.252ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 1.271ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.263ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.365ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:47:51] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:47:51] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:47:51] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:47:51] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:47:51] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:47:51] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:47:51] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.282ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.262ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.388ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 3.249ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.601ms returns 0 (0x00000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:47:51] [debug] [ nRF52] - disable_bprot +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.286ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:47:51] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:47:51] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:47:51] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 63.653ms +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:51] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:47:51] [ info] [ nRF52] - Program flash. +[2023-Jun-02 15:47:51] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:47:51] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_write +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - write +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.574ms returns 0 (0x00000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_WriteMem(19816 bytes @ 0x00000000) +[2023-Jun-02 15:47:51] [trace] [ Client] - Command program_file executed for 223 milliseconds with result 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 129.477ms returns 0x4D68 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.376ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.370ms returns 0 (0x00000000) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:51] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:47:51] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:47:51] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:47:51] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:51] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:47:51] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":132,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:47:51] [trace] [ JLink] - - 0.017ms +[2023-Jun-02 15:47:51] [trace] [ Worker] - Command program_file executed for 223 milliseconds with result 0 +[2023-Jun-02 15:47:52] [debug] [ Client] - verify +[2023-Jun-02 15:47:52] [debug] [ nRF52] - verify +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:52] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 15:47:52] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 15:47:52] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 15:47:52] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:47:52] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:47:52] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:47:52] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:52] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:52] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:52] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:52] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:52] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:52] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:47:52] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:52] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:52] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:52] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:52] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:52] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:52] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:47:52] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:47:52] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:52] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:52] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.309ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.264ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.331ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:52] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:52] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:52] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:52] [ info] [ nRF52] - Verify +[2023-Jun-02 15:47:52] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 15:47:52] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:47:52] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:47:52] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:47:52] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:47:52] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:47:52] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":275,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:47:52] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:47:52] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:47:52] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 15:47:52] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:47:52] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:47:52] [debug] [ nRF52] - Just_read +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - read +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:47:52] [trace] [ JLink] - CPU_ReadMem(19840 bytes @ 0x00000000) +[2023-Jun-02 15:47:52] [trace] [ Client] - Command verify_file executed for 142 milliseconds with result -160 +[2023-Jun-02 15:47:52] [trace] [ JLink] - -- Updating C cache (19840 bytes @ 0x00000000) +[2023-Jun-02 15:47:52] [trace] [ JLink] - -- Read from C cache (19816 bytes @ 0x00000000) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 132.798ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [error] [ nRF52] - Data does not match in address range [0x00000000-0x00004D68] (Flash) +[2023-Jun-02 15:47:52] [ info] [ nRF52] - {"amountOfSteps":0,"description":"Verifying image","message":"Data does not match in address range [0x00000000-0x00004D68] (Flash)","operation":"verify_image","progressPercentage":0,"result":"fail","step":0} +[2023-Jun-02 15:47:52] [error] [ nRF52] - Expected byte value 0x4F but read 0x40 at address 0x0000040A. +[2023-Jun-02 15:47:52] [ info] [ nRF52] - {"amountOfSteps":0,"description":"Verifying image","message":"Expected byte value 0x4F but read 0x40 at address 0x0000040A.","operation":"verify_image","progressPercentage":0,"result":"fail","step":0} +[2023-Jun-02 15:47:52] [error] [ nRF52] - Flash verification failed. +[2023-Jun-02 15:47:52] [error] [ nRF52] - Failed while verifying file zephyr.hex. +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.021ms +[2023-Jun-02 15:47:52] [trace] [ Worker] - Command verify_file executed for 142 milliseconds with result -160 +[2023-Jun-02 15:47:52] [debug] [ nRF52] - close +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.004ms returns 0x01 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - close +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_WriteU32_64(0xE000EDFC, 0x00000000) +[2023-Jun-02 15:47:52] [trace] [ JLink] - Debug reg: DEMCR +[2023-Jun-02 15:47:52] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:52] [trace] [ JLink] - - 0.320ms returns 0 (0x00000000) +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - Shortcut, lock is on and debug region is powered. +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - unpower_debug_and_system_regions +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:47:52] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:52] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x01, 0x00000000) +[2023-Jun-02 15:47:58] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:47:58] [debug] nrfjprog -f nrf52 --program zephyr.hex --verify --log --reset +[2023-Jun-02 15:47:58] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 15:47:58] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:47:58] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 15:47:58] [ info] Library loaded, loading member functions. +[2023-Jun-02 15:47:58] [ info] Member functions succesfully loaded. +[2023-Jun-02 15:47:58] [debug] [ Client] - open +[2023-Jun-02 15:47:58] [debug] [ Client] - start +[2023-Jun-02 15:47:58] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence fea42d4e-4cfc-4c65-921f-f46c0dc85fee. +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 15:47:58] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 15:47:58] [debug] [ nRF52] - open +[2023-Jun-02 15:47:58] [debug] [ nRF52] - just_check_family +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 15:47:58] [trace] [ Client] - Command open executed for 4 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ Client] - config +[2023-Jun-02 15:47:58] [trace] [ Client] - Command config executed for 1 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 15:47:58] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 15:47:58] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 15:47:58] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 15:47:58] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 15:47:58] [trace] [ Worker] - Command open executed for 3 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - config +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 15:47:58] [trace] [ Worker] - Command config executed for 1 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 15:47:58] [trace] [ Client] - Command enum_emu_con_info executed for 105 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:58] [trace] [ Worker] - Command enum_emu_con_info executed for 105 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 15:47:58] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:47:58] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:47:58] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 15:47:58] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 15:47:58] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 15:47:58] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 15:47:58] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 15:47:58] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 15:47:58] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 15:47:58] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:47:58] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:47:58] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 15:47:58] [trace] [ Client] - Command connect_to_emu_with_snr executed for 343 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 15:47:58] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ Client] - read_device_info +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 28.785ms returns "O.K." +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.000ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.000ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.003ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.421ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 15:47:58] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.049ms +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:58] [debug] [ nRF52] - read_device_family +[2023-Jun-02 15:47:58] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 343 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:58] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.139ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.363ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:47:58] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.226ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 15:47:58] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:47:58] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:47:58] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 15:47:58] [trace] [ JLink] - InitTarget() end - Took 1.71ms +[2023-Jun-02 15:47:58] [trace] [ JLink] - InitTarget() end - Took 1.71ms +[2023-Jun-02 15:47:58] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:47:58] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:47:58] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:47:58] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:47:58] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:47:58] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:47:58] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:47:58] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:47:58] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:47:58] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:47:58] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:47:58] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:47:58] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:47:58] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:47:58] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:47:58] [trace] [ Client] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:47:58] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:47:58] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:47:58] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:47:58] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 15:47:58] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:47:58] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 15:47:58] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:47:58] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 15:47:58] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:47:58] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 15:47:58] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:47:58] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 15:47:58] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:47:58] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 15:47:58] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:47:58] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 12.494ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.002ms returns 0xE0000FF +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 15:47:58] [trace] [ Worker] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.285ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:58] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:47:58] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:58] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:58] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:58] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:58] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:58] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:58] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:58] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:58] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:58] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:58] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:58] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:47:58] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.025ms +[2023-Jun-02 15:47:58] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.268ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:58] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.012ms +[2023-Jun-02 15:47:58] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:58] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:58] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:58] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:58] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:58] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:58] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:58] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:58] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:47:58] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:58] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:58] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:47:58] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ Client] - erase +[2023-Jun-02 15:47:58] [trace] [ Client] - Command erase_file executed for 1 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ Client] - program +[2023-Jun-02 15:47:58] [debug] [ nRF52] - erase_file +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:58] [debug] [ nRF52] - erase +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 1.063ms +[2023-Jun-02 15:47:58] [trace] [ Worker] - Command erase_file executed for 1 milliseconds with result 0 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - program +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:58] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 15:47:58] [debug] [ nRF52] - program_file +[2023-Jun-02 15:47:58] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 15:47:58] [ info] [ nRF52] - Check program file +[2023-Jun-02 15:47:58] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:47:58] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.266ms returns 1 (0x1) +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:47:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:47:58] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:47:58] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:47:58] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:47:58] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:47:58] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:47:58] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.278ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.262ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.306ms returns 1 (0x1) +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 3.345ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":8,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:47:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:47:58] [ info] [ nRF52] - Program flash. +[2023-Jun-02 15:47:58] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:47:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_write +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - write +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.671ms returns 0 (0x00000000) +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:47:58] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:58] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:47:58] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:47:58] [trace] [ JLink] - CPU_WriteMem(19816 bytes @ 0x00000000) +[2023-Jun-02 15:47:59] [trace] [ Client] - Command program_file executed for 147 milliseconds with result 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 129.407ms returns 0x4D68 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:47:59] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:47:59] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:47:59] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:47:59] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":132,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.016ms +[2023-Jun-02 15:47:59] [trace] [ Worker] - Command program_file executed for 147 milliseconds with result 0 +[2023-Jun-02 15:47:59] [debug] [ Client] - verify +[2023-Jun-02 15:47:59] [debug] [ nRF52] - verify +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.007ms returns 0x01 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:47:59] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 15:47:59] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 15:47:59] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 15:47:59] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:47:59] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:47:59] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:47:59] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:59] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:59] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.268ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.288ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:59] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:59] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:59] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:59] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:47:59] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:59] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:59] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:59] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.352ms returns 1 (0x1) +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:59] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:59] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:59] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:47:59] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:47:59] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:47:59] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:47:59] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:47:59] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:47:59] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:47:59] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:47:59] [ info] [ nRF52] - Verify +[2023-Jun-02 15:47:59] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 15:47:59] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:47:59] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:47:59] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:47:59] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:47:59] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:47:59] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":201,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:47:59] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:47:59] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:47:59] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 15:47:59] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:47:59] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:47:59] [debug] [ nRF52] - Just_read +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - read +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 15:47:59] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:47:59] [trace] [ JLink] - CPU_ReadMem(19840 bytes @ 0x00000000) +[2023-Jun-02 15:47:59] [trace] [ Client] - Command verify_file executed for 143 milliseconds with result -160 +[2023-Jun-02 15:47:59] [trace] [ JLink] - -- Updating C cache (19840 bytes @ 0x00000000) +[2023-Jun-02 15:47:59] [trace] [ JLink] - -- Read from C cache (19816 bytes @ 0x00000000) +[2023-Jun-02 15:47:59] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 132.915ms returns 0 +[2023-Jun-02 15:47:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:47:59] [error] [ nRF52] - Data does not match in address range [0x00000000-0x00004D68] (Flash) +[2023-Jun-02 15:47:59] [ info] [ nRF52] - {"amountOfSteps":0,"description":"Verifying image","message":"Data does not match in address range [0x00000000-0x00004D68] (Flash)","operation":"verify_image","progressPercentage":0,"result":"fail","step":0} +[2023-Jun-02 15:47:59] [error] [ nRF52] - Expected byte value 0x4F but read 0x40 at address 0x0000040A. +[2023-Jun-02 15:47:59] [ info] [ nRF52] - {"amountOfSteps":0,"description":"Verifying image","message":"Expected byte value 0x4F but read 0x40 at address 0x0000040A.","operation":"verify_image","progressPercentage":0,"result":"fail","step":0} +[2023-Jun-02 15:47:59] [error] [ nRF52] - Flash verification failed. +[2023-Jun-02 15:47:59] [error] [ nRF52] - Failed while verifying file zephyr.hex. +[2023-Jun-02 15:47:59] [trace] [ JLink] - - 0.020ms +[2023-Jun-02 15:48:32] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:48:32] [debug] nrfjprog -f nrf52 --program zephyr.hex --verify --sectorerase --log --reset +[2023-Jun-02 15:48:32] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 15:48:32] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:48:32] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 15:48:32] [ info] Library loaded, loading member functions. +[2023-Jun-02 15:48:32] [ info] Member functions succesfully loaded. +[2023-Jun-02 15:48:32] [debug] [ Client] - open +[2023-Jun-02 15:48:32] [debug] [ Client] - start +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 15:48:32] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 15:48:32] [debug] [ nRF52] - open +[2023-Jun-02 15:48:32] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence 482723c2-fa3d-41d9-b726-cede98145e73. +[2023-Jun-02 15:48:32] [debug] [ nRF52] - just_check_family +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 15:48:32] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ Client] - config +[2023-Jun-02 15:48:32] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 15:48:32] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 15:48:32] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 15:48:32] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 15:48:32] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 15:48:32] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - config +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 15:48:32] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 15:48:32] [trace] [ Client] - Command enum_emu_con_info executed for 105 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:32] [trace] [ Worker] - Command enum_emu_con_info executed for 105 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 15:48:32] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:48:32] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:48:32] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 15:48:32] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 15:48:32] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 15:48:32] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 15:48:32] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 15:48:32] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 15:48:32] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 15:48:32] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:48:32] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:48:32] [trace] [ Client] - Command connect_to_emu_with_snr executed for 350 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 15:48:32] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ Client] - read_device_info +[2023-Jun-02 15:48:32] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 31.452ms returns "O.K." +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.000ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.003ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.431ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 15:48:32] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.057ms +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:48:32] [debug] [ nRF52] - read_device_family +[2023-Jun-02 15:48:32] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 350 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.004ms returns 0x01 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 15:48:32] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.004ms returns 0x01 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.137ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.368ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.004ms returns FALSE +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:48:32] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.689ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 15:48:32] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:48:32] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:48:32] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 15:48:32] [trace] [ JLink] - InitTarget() end - Took 1.92ms +[2023-Jun-02 15:48:32] [trace] [ JLink] - InitTarget() end - Took 1.92ms +[2023-Jun-02 15:48:32] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:48:32] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:48:32] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:48:32] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:48:32] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:48:32] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:48:32] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:48:32] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:48:32] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:48:32] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:48:32] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:48:32] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:48:32] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:48:32] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:48:32] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:48:32] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:48:32] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:48:32] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 15:48:32] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:48:32] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 15:48:32] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:48:32] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 15:48:32] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:48:32] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 15:48:32] [trace] [ Client] - Command read_device_info executed for 18 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:48:32] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:48:32] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:48:32] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 15:48:32] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:48:32] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 15:48:32] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:48:32] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 14.018ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.006ms returns 0xE0000FF +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.363ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.056ms +[2023-Jun-02 15:48:32] [trace] [ Worker] - Command read_device_info executed for 18 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.271ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.282ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:32] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.253ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.003ms returns TRUE +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.055ms +[2023-Jun-02 15:48:32] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:32] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:32] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:32] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:32] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:32] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:32] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:32] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:32] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:32] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:32] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:32] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:32] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:32] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.017ms +[2023-Jun-02 15:48:32] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:48:32] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:48:32] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:48:32] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:48:32] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:48:32] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:48:32] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:48:32] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:48:32] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:48:32] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:48:32] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:48:32] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:48:32] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:32] [debug] [ Client] - erase +[2023-Jun-02 15:48:32] [debug] [ nRF52] - erase_file +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - erase +[2023-Jun-02 15:48:32] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:48:32] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:48:32] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:48:32] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 15:48:32] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:48:32] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:48:32] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:48:32] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:48:32] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:48:32] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.357ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 3.253ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":8,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:48:32] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:48:32] [ info] [ nRF52] - Erasing +[2023-Jun-02 15:48:32] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:48:32] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:48:32] [ info] [ nRF52] - Erasing flash range [0x00000000-0x00004D68] +[2023-Jun-02 15:48:32] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:48:32] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.614ms returns 0 (0x00000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.375ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.310ms returns 0 (0x00000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.370ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.372ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.373ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.314ms returns 0 (0x00000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:48:32] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.324ms returns 0 (0x00000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.319ms returns 0 (0x00000000) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.454ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:32] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:32] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:32] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:32] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 15:48:32] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.331ms returns 0 (0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:48:33] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.376ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.310ms returns 0 (0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.309ms returns 0 (0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.368ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.410ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.253ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.374ms returns 0 (0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:48:33] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.324ms returns 0 (0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.324ms returns 0 (0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.010ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.536ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:48:33] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.295ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.298ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.260ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.327ms returns 0 (0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.335ms returns 0 (0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.013ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.441ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.011ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.412ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.518ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.546ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ Client] - Command erase_file executed for 584 milliseconds with result 0 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.456ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.333ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.315ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.445ms returns 0 (0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:48:33] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":568,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.054ms +[2023-Jun-02 15:48:33] [trace] [ Worker] - Command erase_file executed for 584 milliseconds with result 0 +[2023-Jun-02 15:48:33] [debug] [ Client] - program +[2023-Jun-02 15:48:33] [debug] [ nRF52] - program +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:33] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 15:48:33] [debug] [ nRF52] - program_file +[2023-Jun-02 15:48:33] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 15:48:33] [ info] [ nRF52] - Check program file +[2023-Jun-02 15:48:33] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:48:33] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:33] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:48:33] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:48:33] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:48:33] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:48:33] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:48:33] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:48:33] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":635,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:48:33] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.254ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.264ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:48:33] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:48:33] [ info] [ nRF52] - Program flash. +[2023-Jun-02 15:48:33] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:48:33] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_write +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - write +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.393ms returns 0 (0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_WriteMem(19816 bytes @ 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ Client] - Command program_file executed for 144 milliseconds with result 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 129.458ms returns 0x4D68 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.380ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.375ms returns 0 (0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:48:33] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":132,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.016ms +[2023-Jun-02 15:48:33] [trace] [ Worker] - Command program_file executed for 144 milliseconds with result 0 +[2023-Jun-02 15:48:33] [debug] [ Client] - verify +[2023-Jun-02 15:48:33] [debug] [ nRF52] - verify +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.004ms returns 0x01 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:33] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 15:48:33] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 15:48:33] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:48:33] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:48:33] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.264ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:33] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:48:33] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:33] [ info] [ nRF52] - Verify +[2023-Jun-02 15:48:33] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 15:48:33] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:48:33] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:48:33] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:48:33] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:48:33] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":832,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:48:33] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:48:33] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:48:33] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 15:48:33] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:48:33] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_read +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(19840 bytes @ 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ Client] - Command verify_file executed for 142 milliseconds with result 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - -- Updating C cache (19840 bytes @ 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - -- Read from C cache (19816 bytes @ 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 132.711ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:48:33] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":132,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.018ms +[2023-Jun-02 15:48:33] [trace] [ Worker] - Command verify_file executed for 142 milliseconds with result 0 +[2023-Jun-02 15:48:33] [debug] [ Client] - sys_reset +[2023-Jun-02 15:48:33] [debug] [ nRF52] - sys_reset +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.322ms returns 0x00 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:48:33] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:48:33] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:48:33] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:48:33] [trace] [ Client] - Command sys_reset executed for 67 milliseconds with result 0 +[2023-Jun-02 15:48:33] [debug] [ Client] - go +[2023-Jun-02 15:48:33] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 64.388ms +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.019ms +[2023-Jun-02 15:48:33] [trace] [ Worker] - Command sys_reset executed for 67 milliseconds with result 0 +[2023-Jun-02 15:48:33] [debug] [ nRF52] - go +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_go +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - go +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 1.036ms +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:48:33] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 15:48:33] [debug] [ nRF52] - close +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - close +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_WriteU32_64(0xE000EDFC, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - Debug reg: DEMCR +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU is running +[2023-Jun-02 15:48:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.583ms returns 0 (0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - Shortcut, lock is on and debug region is powered. +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - unpower_debug_and_system_regions +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x01, 0x00000000) +[2023-Jun-02 15:48:33] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:48:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:48:46] [debug] nrfjprog -f nrf52 --program zephyr.hex --verify --sectorerase --log --reset +[2023-Jun-02 15:48:46] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 15:48:46] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:48:46] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 15:48:46] [ info] Library loaded, loading member functions. +[2023-Jun-02 15:48:46] [ info] Member functions succesfully loaded. +[2023-Jun-02 15:48:46] [debug] [ Client] - open +[2023-Jun-02 15:48:46] [debug] [ Client] - start +[2023-Jun-02 15:48:46] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence db3267d8-80dd-4d74-8d93-163d1aed94f2. +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 15:48:46] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 15:48:46] [debug] [ nRF52] - open +[2023-Jun-02 15:48:46] [debug] [ nRF52] - just_check_family +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 15:48:46] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 15:48:46] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ Client] - config +[2023-Jun-02 15:48:46] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 15:48:46] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 15:48:46] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 15:48:46] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 15:48:46] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - config +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 15:48:46] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 15:48:46] [trace] [ Client] - Command enum_emu_con_info executed for 100 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:46] [trace] [ Worker] - Command enum_emu_con_info executed for 100 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 15:48:46] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:48:46] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:48:46] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 15:48:46] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 15:48:46] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 15:48:46] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 15:48:46] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 15:48:46] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 15:48:46] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 15:48:46] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:48:46] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:48:46] [trace] [ Client] - Command connect_to_emu_with_snr executed for 338 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 15:48:46] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ Client] - read_device_info +[2023-Jun-02 15:48:46] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 27.634ms returns "O.K." +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.002ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.434ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 15:48:46] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.049ms +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:48:46] [debug] [ nRF52] - read_device_family +[2023-Jun-02 15:48:46] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 338 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:48:46] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.132ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.356ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:48:46] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.285ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 15:48:46] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:48:46] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:48:46] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 15:48:46] [trace] [ JLink] - InitTarget() end - Took 1.71ms +[2023-Jun-02 15:48:46] [trace] [ JLink] - InitTarget() end - Took 1.71ms +[2023-Jun-02 15:48:46] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:48:46] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:48:46] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:48:46] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:48:46] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:48:46] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:48:46] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:48:46] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:48:46] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:48:46] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:48:46] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:48:46] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:48:46] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:48:46] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:48:46] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:48:46] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:48:46] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:48:46] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 15:48:46] [trace] [ Client] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:48:46] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:48:46] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:48:46] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 15:48:46] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:48:46] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 15:48:46] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:48:46] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 15:48:46] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:48:46] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 15:48:46] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:48:46] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 15:48:46] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:48:46] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 12.818ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.002ms returns 0xE0000FF +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.375ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 15:48:46] [trace] [ Worker] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:46] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.025ms +[2023-Jun-02 15:48:46] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:46] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:46] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:46] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:46] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:46] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:46] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:46] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:46] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:46] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:46] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:46] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:46] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:46] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.336ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.274ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.003ms returns TRUE +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.016ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.037ms +[2023-Jun-02 15:48:46] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 15:48:46] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:48:46] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 15:48:46] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:48:46] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 15:48:46] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:48:46] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:48:46] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:48:46] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:48:46] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:48:46] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:48:46] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:48:46] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:46] [debug] [ Client] - erase +[2023-Jun-02 15:48:46] [debug] [ nRF52] - erase_file +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.007ms returns 0x01 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - erase +[2023-Jun-02 15:48:46] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:48:46] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.153ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.385ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:48:46] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:48:46] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 15:48:46] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:48:46] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:48:46] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:48:46] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:48:46] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:48:46] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 3.319ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.628ms returns 0 (0x00000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:48:46] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:48:46] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:48:46] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:48:46] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 63.763ms +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:46] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:48:46] [ info] [ nRF52] - Erasing +[2023-Jun-02 15:48:46] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:48:46] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:48:46] [ info] [ nRF52] - Erasing flash range [0x00000000-0x00004D68] +[2023-Jun-02 15:48:46] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:48:46] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.260ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.627ms returns 0 (0x00000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.301ms returns 0 (0x00000000) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:46] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 15:48:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.399ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.388ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.312ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.283ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.425ms returns 0 (0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.014ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.483ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:48:47] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.400ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.390ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.367ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.395ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.375ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.405ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.349ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.413ms returns 0 (0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.348ms returns 0 (0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.379ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.361ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.380ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.374ms returns 0 (0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:48:47] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.274ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.268ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.268ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.283ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.383ms returns 0 (0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.347ms returns 0 (0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.413ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.490ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.021ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.589ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.443ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.365ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.594ms returns 0 (0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.017ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.446ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.015ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.472ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:48:47] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.288ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.387ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.261ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.271ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.277ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.013ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.459ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.382ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.363ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.278ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.318ms returns 0 (0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.326ms returns 0 (0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.394ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.013ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.455ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.409ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.261ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.294ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.372ms returns 0 (0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:48:47] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.363ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.324ms returns 0 (0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.289ms returns 0 (0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.393ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.011ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.559ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.010ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.594ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.389ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.379ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:47] [trace] [ Client] - Command erase_file executed for 663 milliseconds with result 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.489ms returns 0 (0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.009ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.397ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.384ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:48:47] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":574,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.058ms +[2023-Jun-02 15:48:47] [trace] [ Worker] - Command erase_file executed for 663 milliseconds with result 0 +[2023-Jun-02 15:48:47] [debug] [ Client] - program +[2023-Jun-02 15:48:47] [debug] [ nRF52] - program +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.010ms returns 0x01 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:47] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 15:48:47] [debug] [ nRF52] - program_file +[2023-Jun-02 15:48:47] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 15:48:47] [ info] [ nRF52] - Check program file +[2023-Jun-02 15:48:47] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:48:47] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.273ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.262ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.416ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.006ms returns TRUE +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.010ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.446ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.391ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:47] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.279ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.321ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.285ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.349ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:48:47] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:48:47] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:48:47] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:48:47] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:48:47] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:48:47] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":718,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:48:47] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.387ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.349ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.291ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.320ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":6,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:48:47] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:48:47] [ info] [ nRF52] - Program flash. +[2023-Jun-02 15:48:47] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:48:47] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_write +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - write +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.328ms returns 0 (0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.369ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_WriteMem(19816 bytes @ 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ Client] - Command program_file executed for 150 milliseconds with result 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 129.658ms returns 0x4D68 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.305ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.327ms returns 0 (0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:48:47] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":132,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.019ms +[2023-Jun-02 15:48:47] [trace] [ Worker] - Command program_file executed for 150 milliseconds with result 0 +[2023-Jun-02 15:48:47] [debug] [ Client] - verify +[2023-Jun-02 15:48:47] [debug] [ nRF52] - verify +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:47] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 15:48:47] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 15:48:47] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:48:47] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:48:47] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:47] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.368ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:48:47] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:47] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:47] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:47] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:47] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:48:49] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 15:48:49] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 15:48:49] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:48:49] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 15:48:49] [ info] Library loaded, loading member functions. +[2023-Jun-02 15:48:49] [ info] Member functions succesfully loaded. +[2023-Jun-02 15:48:49] [debug] [ Client] - open +[2023-Jun-02 15:48:49] [debug] [ Client] - start +[2023-Jun-02 15:48:49] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence f763eb34-a611-4bee-905f-6104e3f9d5e3. +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 15:48:49] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 15:48:49] [debug] [ nRF52] - open +[2023-Jun-02 15:48:49] [debug] [ nRF52] - just_check_family +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 15:48:49] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ Client] - config +[2023-Jun-02 15:48:49] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 15:48:49] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 15:48:49] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 15:48:49] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 15:48:49] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 15:48:49] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - config +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 15:48:49] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 15:48:49] [trace] [ Client] - Command enum_emu_con_info executed for 104 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:49] [trace] [ Worker] - Command enum_emu_con_info executed for 104 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 15:48:49] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:48:49] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:48:49] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 15:48:49] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 15:48:49] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 15:48:49] [trace] [ JLink] - EMU: Cleaned up zombie connection 0. PID: 0xDE25 (56869) +[2023-Jun-02 15:48:49] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 15:48:49] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 15:48:49] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 15:48:49] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 15:48:49] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:48:49] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:48:49] [trace] [ Client] - Command connect_to_emu_with_snr executed for 345 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 15:48:49] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ Client] - read_device_info +[2023-Jun-02 15:48:49] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 28.834ms returns "O.K." +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.003ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.486ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 15:48:49] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.045ms +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.002ms returns 2000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:48:49] [debug] [ nRF52] - read_device_family +[2023-Jun-02 15:48:49] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 345 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:48:49] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.132ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.375ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.002ms returns FALSE +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:48:49] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.310ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 15:48:49] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:48:49] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:48:49] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 15:48:49] [trace] [ JLink] - InitTarget() end - Took 1.62ms +[2023-Jun-02 15:48:49] [trace] [ JLink] - InitTarget() end - Took 1.62ms +[2023-Jun-02 15:48:49] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:48:49] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:48:49] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:48:49] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:48:49] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:48:49] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:48:49] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:48:49] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:48:49] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:48:49] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:48:49] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:48:49] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:48:49] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:48:49] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:48:49] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:48:49] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:48:49] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:48:49] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:48:49] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 15:48:49] [trace] [ Client] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:48:49] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 15:48:49] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:48:49] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 15:48:49] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:48:49] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 15:48:49] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:48:49] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 15:48:49] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:48:49] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 15:48:49] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:48:49] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 15:48:49] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:48:49] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 12.265ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0xE0000FF +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 15:48:49] [trace] [ Worker] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:49] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.022ms +[2023-Jun-02 15:48:49] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:49] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:49] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:49] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:49] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:49] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:49] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:49] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:49] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:49] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:49] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:49] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:48:49] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:49] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.012ms +[2023-Jun-02 15:48:49] [trace] [ Worker] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:48:49] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:48:49] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:48:49] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:48:49] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:48:49] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:48:49] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:48:49] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:48:49] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:48:49] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:48:49] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:48:49] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:48:49] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:49] [debug] [ Client] - erase +[2023-Jun-02 15:48:49] [debug] [ nRF52] - erase_file +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.007ms returns 0x01 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - erase +[2023-Jun-02 15:48:49] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:48:49] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.253ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:48:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:48:49] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 15:48:49] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:48:49] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:48:49] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:48:49] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:48:49] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:48:49] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 3.295ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":8,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:48:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:48:49] [ info] [ nRF52] - Erasing +[2023-Jun-02 15:48:49] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:48:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:48:49] [ info] [ nRF52] - Erasing flash range [0x00000000-0x00004D68] +[2023-Jun-02 15:48:49] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:48:49] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.271ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.367ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.389ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.385ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.271ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.666ms returns 0 (0x00000000) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.292ms returns 0 (0x00000000) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.290ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:49] [trace] [ JLink] - - 0.377ms returns 1 (0x1) +[2023-Jun-02 15:48:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.327ms returns 0 (0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:48:50] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.269ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.354ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.385ms returns 0 (0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.313ms returns 0 (0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.320ms returns 0 (0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:48:50] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.293ms returns 0 (0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.328ms returns 0 (0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.393ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.369ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:48:50] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.367ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.320ms returns 0 (0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.308ms returns 0 (0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.359ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.350ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.325ms returns 0 (0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:48:50] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.381ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.366ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.389ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.298ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.287ms returns 0 (0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.353ms returns 0 (0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.358ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ Client] - Command erase_file executed for 582 milliseconds with result 0 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.402ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.334ms returns 0 (0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:48:50] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":566,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.055ms +[2023-Jun-02 15:48:50] [trace] [ Worker] - Command erase_file executed for 582 milliseconds with result 0 +[2023-Jun-02 15:48:50] [debug] [ Client] - program +[2023-Jun-02 15:48:50] [debug] [ nRF52] - program +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.013ms returns 0x01 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:50] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 15:48:50] [debug] [ nRF52] - program_file +[2023-Jun-02 15:48:50] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 15:48:50] [ info] [ nRF52] - Check program file +[2023-Jun-02 15:48:50] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:48:50] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.293ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.282ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.314ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.301ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.007ms returns TRUE +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.013ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.360ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:50] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.371ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:48:50] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:48:50] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:48:50] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:48:50] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:48:50] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:48:50] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":635,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:48:50] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.370ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.355ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.365ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.366ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.358ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":6,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:48:50] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:48:50] [ info] [ nRF52] - Program flash. +[2023-Jun-02 15:48:50] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:48:50] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_write +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - write +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.369ms returns 0 (0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_WriteMem(19816 bytes @ 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ Client] - Command program_file executed for 150 milliseconds with result 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 130.458ms returns 0x4D68 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.448ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.267ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.354ms returns 0 (0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.363ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:48:50] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":133,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.018ms +[2023-Jun-02 15:48:50] [trace] [ Worker] - Command program_file executed for 150 milliseconds with result 0 +[2023-Jun-02 15:48:50] [debug] [ Client] - verify +[2023-Jun-02 15:48:50] [debug] [ nRF52] - verify +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.004ms returns 0x01 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:50] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 15:48:50] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 15:48:50] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:48:50] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:48:50] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.269ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.260ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:50] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:48:50] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:48:50] [ info] [ nRF52] - Verify +[2023-Jun-02 15:48:50] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 15:48:50] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:48:50] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:48:50] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:48:50] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:48:50] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":836,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:48:50] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:48:50] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:48:50] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 15:48:50] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:48:50] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_read +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(19840 bytes @ 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ Client] - Command verify_file executed for 142 milliseconds with result 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - -- Updating C cache (19840 bytes @ 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - -- Read from C cache (19816 bytes @ 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 132.714ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:48:50] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":132,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.024ms +[2023-Jun-02 15:48:50] [trace] [ Worker] - Command verify_file executed for 142 milliseconds with result 0 +[2023-Jun-02 15:48:50] [debug] [ Client] - sys_reset +[2023-Jun-02 15:48:50] [debug] [ nRF52] - sys_reset +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.307ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.322ms returns 0x00 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.003ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:48:50] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:48:50] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:48:50] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:48:50] [trace] [ Client] - Command sys_reset executed for 67 milliseconds with result 0 +[2023-Jun-02 15:48:50] [debug] [ Client] - go +[2023-Jun-02 15:48:50] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 64.759ms +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.017ms +[2023-Jun-02 15:48:50] [trace] [ Worker] - Command sys_reset executed for 67 milliseconds with result 0 +[2023-Jun-02 15:48:50] [debug] [ nRF52] - go +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_go +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:48:50] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.267ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.264ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - go +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.003ms returns TRUE +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 1.076ms +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:48:50] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 15:48:50] [debug] [ nRF52] - close +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - close +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_WriteU32_64(0xE000EDFC, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - Debug reg: DEMCR +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU is running +[2023-Jun-02 15:48:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.764ms returns 0 (0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - Shortcut, lock is on and debug region is powered. +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - unpower_debug_and_system_regions +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:48:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x01, 0x00000000) +[2023-Jun-02 15:48:50] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:48:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:48:59] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:48:59] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 15:48:59] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 15:48:59] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:48:59] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 15:48:59] [ info] Library loaded, loading member functions. +[2023-Jun-02 15:48:59] [ info] Member functions succesfully loaded. +[2023-Jun-02 15:48:59] [debug] [ Client] - open +[2023-Jun-02 15:48:59] [debug] [ Client] - start +[2023-Jun-02 15:48:59] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence 707c2a89-e669-46f8-8dcf-104d23a50133. +[2023-Jun-02 15:48:59] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 15:48:59] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 15:48:59] [debug] [ nRF52] - open +[2023-Jun-02 15:48:59] [debug] [ nRF52] - just_check_family +[2023-Jun-02 15:48:59] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 15:48:59] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 15:48:59] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:48:59] [debug] [ Client] - config +[2023-Jun-02 15:48:59] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:59] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 15:48:59] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 15:48:59] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 15:48:59] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 15:48:59] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 15:48:59] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 15:48:59] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 15:48:59] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:48:59] [debug] [ nRF52] - config +[2023-Jun-02 15:48:59] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 15:48:59] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:48:59] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 15:48:59] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:59] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 15:48:59] [trace] [ Client] - Command enum_emu_con_info executed for 104 milliseconds with result 0 +[2023-Jun-02 15:48:59] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 15:48:59] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:59] [trace] [ Worker] - Command enum_emu_con_info executed for 104 milliseconds with result 0 +[2023-Jun-02 15:48:59] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 15:48:59] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:59] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 15:48:59] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:48:59] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 15:48:59] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 15:48:59] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 15:49:00] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:49:00] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:49:00] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 15:49:00] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 15:49:00] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 15:49:00] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 15:49:00] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 15:49:00] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 15:49:00] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 15:49:00] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:49:00] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:49:00] [trace] [ Client] - Command connect_to_emu_with_snr executed for 357 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 15:49:00] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ Client] - read_device_info +[2023-Jun-02 15:49:00] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 27.614ms returns "O.K." +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.000ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.423ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 15:49:00] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.053ms +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:00] [debug] [ nRF52] - read_device_family +[2023-Jun-02 15:49:00] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 356 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:00] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.131ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.354ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:49:00] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.318ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 15:49:00] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:49:00] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:49:00] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 15:49:00] [trace] [ JLink] - InitTarget() end - Took 1.72ms +[2023-Jun-02 15:49:00] [trace] [ JLink] - InitTarget() end - Took 1.72ms +[2023-Jun-02 15:49:00] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:49:00] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:49:00] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:49:00] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:49:00] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:49:00] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:49:00] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:49:00] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:49:00] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:49:00] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:49:00] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:49:00] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:49:00] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:49:00] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:49:00] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:00] [trace] [ Client] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:49:00] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:49:00] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:49:00] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:49:00] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:49:00] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:49:00] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:49:00] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:49:00] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:49:00] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 12.867ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0xE0000FF +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 15:49:00] [trace] [ Worker] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:00] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:00] [trace] [ Client] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:49:00] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:00] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:00] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:00] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:00] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:00] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:00] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:00] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:00] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:00] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:00] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:00] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:00] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.025ms +[2023-Jun-02 15:49:00] [trace] [ Worker] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.271ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:00] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.271ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.012ms +[2023-Jun-02 15:49:00] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:00] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:00] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:00] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:00] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:00] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:00] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:00] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:00] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:00] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:00] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:00] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:00] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ Client] - erase +[2023-Jun-02 15:49:00] [debug] [ nRF52] - erase_file +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - erase +[2023-Jun-02 15:49:00] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:49:00] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:49:00] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 15:49:00] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:49:00] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:49:00] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:49:00] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:49:00] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:49:00] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 3.236ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.643ms returns 0 (0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.388ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:49:00] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:49:00] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:49:00] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 64.254ms +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:00] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Erasing +[2023-Jun-02 15:49:00] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:49:00] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Erasing flash range [0x00000000-0x00004D68] +[2023-Jun-02 15:49:00] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:49:00] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.362ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.357ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.386ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.551ms returns 0 (0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.326ms returns 0 (0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.382ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.366ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.325ms returns 0 (0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.371ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:49:00] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.367ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.288ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.308ms returns 0 (0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.388ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.282ms returns 0 (0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.356ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.372ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.358ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.350ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.380ms returns 0 (0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:49:00] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.374ms returns 0 (0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.383ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.252ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.408ms returns 0 (0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.359ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.399ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.407ms returns 0 (0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:49:00] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.278ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.328ms returns 0 (0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.350ms returns 0 (0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.390ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.349ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.375ms returns 0 (0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:49:00] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.253ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.276ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.373ms returns 0 (0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.324ms returns 0 (0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.369ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.464ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ Client] - Command erase_file executed for 657 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.018ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.475ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.306ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.345ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.552ms returns 0 (0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.018ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.588ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.018ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.517ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:49:00] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":568,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.075ms +[2023-Jun-02 15:49:00] [trace] [ Worker] - Command erase_file executed for 657 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ Client] - program +[2023-Jun-02 15:49:00] [debug] [ nRF52] - program +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.007ms returns 0x01 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 15:49:00] [debug] [ nRF52] - program_file +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Check program file +[2023-Jun-02 15:49:00] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:49:00] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:49:00] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:49:00] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:49:00] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:49:00] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:49:00] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:49:00] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":707,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:49:00] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.379ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.348ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:49:00] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Program flash. +[2023-Jun-02 15:49:00] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:49:00] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_write +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - write +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.315ms returns 0 (0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(19816 bytes @ 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ Client] - Command program_file executed for 144 milliseconds with result 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 129.468ms returns 0x4D68 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.305ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.357ms returns 0 (0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:00] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:49:00] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":131,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 15:49:00] [trace] [ Worker] - Command program_file executed for 144 milliseconds with result 0 +[2023-Jun-02 15:49:00] [debug] [ Client] - verify +[2023-Jun-02 15:49:00] [debug] [ nRF52] - verify +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:00] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 15:49:00] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 15:49:00] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:49:00] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:49:00] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:00] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:00] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:00] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:00] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:00] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.286ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:01] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:01] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:01] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:01] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:49:01] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:01] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:01] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:01] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:01] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:01] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:01] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:49:01] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:49:01] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:01] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:01] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:01] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:01] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:01] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:01] [ info] [ nRF52] - Verify +[2023-Jun-02 15:49:01] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 15:49:01] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:49:01] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:49:01] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:49:01] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:49:01] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:49:01] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":906,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:49:01] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:49:01] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:49:01] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 15:49:01] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:49:01] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:49:01] [debug] [ nRF52] - Just_read +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:49:01] [trace] [ JLink] - CPU_ReadMem(19840 bytes @ 0x00000000) +[2023-Jun-02 15:49:01] [trace] [ Client] - Command verify_file executed for 144 milliseconds with result 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - -- Updating C cache (19840 bytes @ 0x00000000) +[2023-Jun-02 15:49:01] [trace] [ JLink] - -- Read from C cache (19816 bytes @ 0x00000000) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 132.911ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:49:01] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":132,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.038ms +[2023-Jun-02 15:49:01] [trace] [ Worker] - Command verify_file executed for 143 milliseconds with result 0 +[2023-Jun-02 15:49:01] [debug] [ Client] - sys_reset +[2023-Jun-02 15:49:01] [debug] [ nRF52] - sys_reset +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.028ms returns 0x01 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:01] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 15:49:01] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:01] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.394ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.393ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.312ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.453ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.261ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.004ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 15:49:01] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:01] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:49:01] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:49:01] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:49:01] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:49:01] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 15:49:01] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:01] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:01] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:01] [trace] [ Client] - Command sys_reset executed for 68 milliseconds with result 0 +[2023-Jun-02 15:49:01] [debug] [ Client] - go +[2023-Jun-02 15:49:01] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:01] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:49:01] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:01] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 64.326ms +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 15:49:01] [trace] [ Worker] - Command sys_reset executed for 68 milliseconds with result 0 +[2023-Jun-02 15:49:01] [debug] [ nRF52] - go +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:01] [debug] [ nRF52] - Just_go +[2023-Jun-02 15:49:01] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:01] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - go +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.003ms returns TRUE +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 15:49:01] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:49:01] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 15:49:01] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 1.080ms +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:01] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 15:49:01] [debug] [ nRF52] - close +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - close +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_WriteU32_64(0xE000EDFC, 0x00000000) +[2023-Jun-02 15:49:01] [trace] [ JLink] - Debug reg: DEMCR +[2023-Jun-02 15:49:01] [trace] [ JLink] - CPU is running +[2023-Jun-02 15:49:01] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.371ms returns 0 (0x00000000) +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - Shortcut, lock is on and debug region is powered. +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - unpower_debug_and_system_regions +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x01, 0x00000000) +[2023-Jun-02 15:49:01] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:01] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:01] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:05] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:49:05] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 15:49:05] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 15:49:05] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:49:05] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 15:49:05] [ info] Library loaded, loading member functions. +[2023-Jun-02 15:49:05] [ info] Member functions succesfully loaded. +[2023-Jun-02 15:49:05] [debug] [ Client] - open +[2023-Jun-02 15:49:05] [debug] [ Client] - start +[2023-Jun-02 15:49:05] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence fbb18d72-0313-4df9-87db-05c5eb157d00. +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 15:49:05] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 15:49:05] [debug] [ nRF52] - open +[2023-Jun-02 15:49:05] [debug] [ nRF52] - just_check_family +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 15:49:05] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ Client] - config +[2023-Jun-02 15:49:05] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 15:49:05] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 15:49:05] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 15:49:05] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 15:49:05] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 15:49:05] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - config +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 15:49:05] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 15:49:05] [trace] [ Client] - Command enum_emu_con_info executed for 105 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:05] [trace] [ Worker] - Command enum_emu_con_info executed for 105 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 15:49:05] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:49:05] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:49:05] [trace] [ Client] - Command connect_to_emu_with_snr executed for 334 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 15:49:05] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ Client] - read_device_info +[2023-Jun-02 15:49:05] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 15:49:05] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 15:49:05] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 15:49:05] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 15:49:05] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 15:49:05] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 15:49:05] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 15:49:05] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:49:05] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:49:05] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 21.477ms returns "O.K." +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.002ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.427ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 15:49:05] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.054ms +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:05] [debug] [ nRF52] - read_device_family +[2023-Jun-02 15:49:05] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 334 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:05] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.139ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.351ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:49:05] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.234ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 15:49:05] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:49:05] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:49:05] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 15:49:05] [trace] [ JLink] - InitTarget() end - Took 1.78ms +[2023-Jun-02 15:49:05] [trace] [ JLink] - InitTarget() end - Took 1.78ms +[2023-Jun-02 15:49:05] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:49:05] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:49:05] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:49:05] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:49:05] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:49:05] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:49:05] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:49:05] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:49:05] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:49:05] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:49:05] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:49:05] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:49:05] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:49:05] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:49:05] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:49:05] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:05] [trace] [ Client] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:49:05] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:49:05] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:49:05] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:49:05] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:49:05] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:49:05] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:49:05] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:49:05] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 12.891ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0xE0000FF +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 15:49:05] [trace] [ Worker] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:05] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:49:05] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:05] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:05] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:05] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:05] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:05] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:05] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:05] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:05] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:05] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:05] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:05] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:05] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.023ms +[2023-Jun-02 15:49:05] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:05] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.012ms +[2023-Jun-02 15:49:05] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:05] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:05] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:05] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:05] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:05] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:05] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:05] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:05] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:05] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:05] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:05] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:05] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:05] [debug] [ Client] - erase +[2023-Jun-02 15:49:05] [debug] [ nRF52] - erase_file +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - erase +[2023-Jun-02 15:49:05] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:49:05] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:49:05] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:49:05] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 15:49:05] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:49:05] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:49:05] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:49:05] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:49:05] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:49:05] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.350ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.389ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 3.246ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.649ms returns 0 (0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:49:05] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:49:05] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:49:05] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:49:05] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 63.856ms +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:05] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:49:05] [ info] [ nRF52] - Erasing +[2023-Jun-02 15:49:05] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:49:05] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:49:05] [ info] [ nRF52] - Erasing flash range [0x00000000-0x00004D68] +[2023-Jun-02 15:49:05] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:49:05] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.253ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.718ms returns 0 (0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.310ms returns 0 (0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.362ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.412ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.367ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:49:05] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.271ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.366ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.357ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.386ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.308ms returns 0 (0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.268ms returns 0 (0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.335ms returns 0 (0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:49:05] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.268ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.367ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.368ms returns 0 (0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.356ms returns 0 (0x00000000) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:05] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:49:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.286ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.290ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.300ms returns 0 (0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:49:06] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.252ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.276ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.267ms returns 0 (0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.290ms returns 0 (0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.383ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.318ms returns 0 (0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:49:06] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.289ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.011ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.373ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.374ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.350ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.013ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.276ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.334ms returns 0 (0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.350ms returns 0 (0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ Client] - Command erase_file executed for 655 milliseconds with result 0 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.419ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.252ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.326ms returns 0 (0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:49:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":567,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.016ms +[2023-Jun-02 15:49:06] [trace] [ Worker] - Command erase_file executed for 655 milliseconds with result 0 +[2023-Jun-02 15:49:06] [debug] [ Client] - program +[2023-Jun-02 15:49:06] [debug] [ nRF52] - program +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.010ms returns 0x01 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:06] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 15:49:06] [debug] [ nRF52] - program_file +[2023-Jun-02 15:49:06] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 15:49:06] [ info] [ nRF52] - Check program file +[2023-Jun-02 15:49:06] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:49:06] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.289ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:06] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:49:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:49:06] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:49:06] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:49:06] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:49:06] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:49:06] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":706,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:49:06] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.267ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.328ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:49:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:49:06] [ info] [ nRF52] - Program flash. +[2023-Jun-02 15:49:06] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:49:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_write +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - write +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.330ms returns 0 (0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_WriteMem(19816 bytes @ 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 129.407ms returns 0x4D68 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.377ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.269ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.343ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.352ms returns 0 (0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:49:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":132,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.024ms +[2023-Jun-02 15:49:06] [trace] [ Worker] - Command program_file executed for 145 milliseconds with result 0 +[2023-Jun-02 15:49:06] [trace] [ Client] - Command program_file executed for 145 milliseconds with result 0 +[2023-Jun-02 15:49:06] [debug] [ Client] - verify +[2023-Jun-02 15:49:06] [debug] [ nRF52] - verify +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:06] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 15:49:06] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 15:49:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:49:06] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:49:06] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.280ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.004ms returns TRUE +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.381ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:06] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:49:06] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.289ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.359ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:06] [ info] [ nRF52] - Verify +[2023-Jun-02 15:49:06] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 15:49:06] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:49:06] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:49:06] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:49:06] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:49:06] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":856,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:49:06] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:49:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:49:06] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 15:49:06] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:49:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_read +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.009ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(19840 bytes @ 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ Client] - Command verify_file executed for 145 milliseconds with result 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - -- Updating C cache (19840 bytes @ 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - -- Read from C cache (19816 bytes @ 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 132.811ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:49:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":132,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.025ms +[2023-Jun-02 15:49:06] [trace] [ Worker] - Command verify_file executed for 145 milliseconds with result 0 +[2023-Jun-02 15:49:06] [debug] [ Client] - sys_reset +[2023-Jun-02 15:49:06] [debug] [ nRF52] - sys_reset +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.004ms returns 0x01 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:49:06] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:49:06] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:49:06] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:06] [trace] [ Client] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 15:49:06] [debug] [ Client] - go +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 63.334ms +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 15:49:06] [trace] [ Worker] - Command sys_reset executed for 65 milliseconds with result 0 +[2023-Jun-02 15:49:06] [debug] [ nRF52] - go +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_go +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - go +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 1.087ms +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:06] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 15:49:06] [debug] [ nRF52] - close +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - close +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_WriteU32_64(0xE000EDFC, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Debug reg: DEMCR +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU is running +[2023-Jun-02 15:49:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.371ms returns 0 (0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - Shortcut, lock is on and debug region is powered. +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - unpower_debug_and_system_regions +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x01, 0x00000000) +[2023-Jun-02 15:49:06] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:06] [trace] [ JLink] - Value=0x00000040 +[2023-Jun-02 15:49:18] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:49:18] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 15:49:18] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 15:49:18] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:49:18] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 15:49:18] [ info] Library loaded, loading member functions. +[2023-Jun-02 15:49:18] [ info] Member functions succesfully loaded. +[2023-Jun-02 15:49:18] [debug] [ Client] - open +[2023-Jun-02 15:49:18] [debug] [ Client] - start +[2023-Jun-02 15:49:18] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence c39afec7-2c3e-4906-a354-c8699cd2292d. +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 15:49:18] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 15:49:18] [debug] [ nRF52] - open +[2023-Jun-02 15:49:18] [debug] [ nRF52] - just_check_family +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 15:49:18] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ Client] - config +[2023-Jun-02 15:49:18] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 15:49:18] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 15:49:18] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 15:49:18] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 15:49:18] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 15:49:18] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - config +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 15:49:18] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 15:49:18] [trace] [ Client] - Command enum_emu_con_info executed for 106 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:18] [trace] [ Worker] - Command enum_emu_con_info executed for 106 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 15:49:18] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:49:18] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:49:18] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 15:49:18] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 15:49:18] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 15:49:18] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 15:49:18] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 15:49:18] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 15:49:18] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 15:49:18] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:49:18] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:49:18] [trace] [ Client] - Command connect_to_emu_with_snr executed for 352 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 15:49:18] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ Client] - read_device_info +[2023-Jun-02 15:49:18] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 28.823ms returns "O.K." +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.000ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.003ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.443ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 15:49:18] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.050ms +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns 2000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:18] [debug] [ nRF52] - read_device_family +[2023-Jun-02 15:49:18] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 352 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:18] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.139ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.352ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns FALSE +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.000ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:49:18] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.268ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 15:49:18] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:49:18] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:49:18] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 15:49:18] [trace] [ JLink] - InitTarget() end - Took 1.71ms +[2023-Jun-02 15:49:18] [trace] [ JLink] - InitTarget() end - Took 1.71ms +[2023-Jun-02 15:49:18] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:49:18] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:49:18] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:49:18] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:49:18] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:49:18] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:49:18] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:49:18] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:49:18] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:49:18] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:49:18] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:49:18] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:49:18] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:49:18] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:49:18] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:49:18] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:49:18] [trace] [ Client] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:49:18] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:49:18] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:49:18] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:49:18] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:49:18] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:49:18] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:49:18] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:49:18] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:49:18] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 12.862ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns 0xE0000FF +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 15:49:18] [trace] [ Worker] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:18] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.025ms +[2023-Jun-02 15:49:18] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:18] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:18] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:18] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:18] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:18] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:18] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:18] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:18] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:18] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:18] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:18] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:18] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:18] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:18] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 15:49:18] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:18] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:18] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:18] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:18] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:18] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:18] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:18] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:18] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:18] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:18] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:18] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:18] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:18] [debug] [ Client] - erase +[2023-Jun-02 15:49:18] [debug] [ nRF52] - erase_file +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - erase +[2023-Jun-02 15:49:18] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:49:18] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:49:18] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:49:18] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 15:49:18] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:49:18] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:49:18] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:49:18] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:49:18] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:49:18] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 3.275ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.684ms returns 0 (0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:49:18] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:49:18] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:49:18] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:49:18] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 64.182ms +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:18] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:49:18] [ info] [ nRF52] - Erasing +[2023-Jun-02 15:49:18] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:49:18] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:49:18] [ info] [ nRF52] - Erasing flash range [0x00000000-0x00004D68] +[2023-Jun-02 15:49:18] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:49:18] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.606ms returns 0 (0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.296ms returns 0 (0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.365ms returns 0 (0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:49:18] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.367ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.327ms returns 0 (0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.308ms returns 0 (0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.349ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.371ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.365ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.306ms returns 0 (0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:49:18] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.360ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.365ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.364ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.416ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.365ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.377ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.377ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.305ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.320ms returns 0 (0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.289ms returns 0 (0x00000000) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:18] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 15:49:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.357ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.376ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.253ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.372ms returns 0 (0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:49:19] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.310ms returns 0 (0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.300ms returns 0 (0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.358ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.409ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.327ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.426ms returns 0 (0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:49:19] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.268ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.254ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.290ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.350ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.306ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.356ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.009ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.349ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.351ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.010ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.379ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.261ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.253ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.260ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.264ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.296ms returns 0 (0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.339ms returns 0 (0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.373ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ Client] - Command erase_file executed for 656 milliseconds with result 0 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.352ms returns 0 (0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:49:19] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":567,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.016ms +[2023-Jun-02 15:49:19] [trace] [ Worker] - Command erase_file executed for 656 milliseconds with result 0 +[2023-Jun-02 15:49:19] [debug] [ Client] - program +[2023-Jun-02 15:49:19] [debug] [ nRF52] - program +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.008ms returns 0x01 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:19] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 15:49:19] [debug] [ nRF52] - program_file +[2023-Jun-02 15:49:19] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 15:49:19] [ info] [ nRF52] - Check program file +[2023-Jun-02 15:49:19] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:49:19] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.286ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:19] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.306ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.267ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:49:19] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:49:19] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:49:19] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:49:19] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:49:19] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:49:19] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":706,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:49:19] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.357ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.312ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.305ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:49:19] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:49:19] [ info] [ nRF52] - Program flash. +[2023-Jun-02 15:49:19] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:49:19] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_write +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - write +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.322ms returns 0 (0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_WriteMem(19816 bytes @ 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ Client] - Command program_file executed for 145 milliseconds with result 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 129.443ms returns 0x4D68 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.352ms returns 0 (0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:49:19] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":132,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 15:49:19] [trace] [ Worker] - Command program_file executed for 144 milliseconds with result 0 +[2023-Jun-02 15:49:19] [debug] [ Client] - verify +[2023-Jun-02 15:49:19] [debug] [ nRF52] - verify +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:19] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 15:49:19] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 15:49:19] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:49:19] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:49:19] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.276ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.274ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:19] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.389ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:49:19] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:19] [ info] [ nRF52] - Verify +[2023-Jun-02 15:49:19] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 15:49:19] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:49:19] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:49:19] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:49:19] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:49:19] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":905,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:49:19] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:49:19] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:49:19] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 15:49:19] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:49:19] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_read +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(19840 bytes @ 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ Client] - Command verify_file executed for 143 milliseconds with result 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - -- Updating C cache (19840 bytes @ 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - -- Read from C cache (19816 bytes @ 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 132.657ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:49:19] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":132,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.021ms +[2023-Jun-02 15:49:19] [trace] [ Worker] - Command verify_file executed for 143 milliseconds with result 0 +[2023-Jun-02 15:49:19] [debug] [ Client] - sys_reset +[2023-Jun-02 15:49:19] [debug] [ nRF52] - sys_reset +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.272ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.003ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:49:19] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:49:19] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:49:19] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:19] [trace] [ Client] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 15:49:19] [debug] [ Client] - go +[2023-Jun-02 15:49:19] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 63.914ms +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.004ms +[2023-Jun-02 15:49:19] [trace] [ Worker] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 15:49:19] [debug] [ nRF52] - go +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_go +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:19] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - go +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 1.079ms +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:19] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 15:49:19] [debug] [ nRF52] - close +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - close +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_WriteU32_64(0xE000EDFC, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - Debug reg: DEMCR +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU is running +[2023-Jun-02 15:49:19] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.371ms returns 0 (0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - Shortcut, lock is on and debug region is powered. +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - unpower_debug_and_system_regions +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:19] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x01, 0x00000000) +[2023-Jun-02 15:49:19] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:49:19] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:49:21] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 15:49:21] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 15:49:21] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 15:49:21] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 15:49:21] [ info] Library loaded, loading member functions. +[2023-Jun-02 15:49:21] [ info] Member functions succesfully loaded. +[2023-Jun-02 15:49:21] [debug] [ Client] - open +[2023-Jun-02 15:49:21] [debug] [ Client] - start +[2023-Jun-02 15:49:21] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence 16bcea56-189e-4ca6-ac4d-deb042d54f5b. +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 15:49:21] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 15:49:21] [debug] [ nRF52] - open +[2023-Jun-02 15:49:21] [debug] [ nRF52] - just_check_family +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 15:49:21] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ Client] - config +[2023-Jun-02 15:49:21] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 15:49:21] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 15:49:21] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 15:49:21] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 15:49:21] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 15:49:21] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - config +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 15:49:21] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 15:49:21] [trace] [ Client] - Command enum_emu_con_info executed for 106 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:21] [trace] [ Worker] - Command enum_emu_con_info executed for 106 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 15:49:21] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:49:21] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 15:49:21] [trace] [ Client] - Command connect_to_emu_with_snr executed for 327 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 15:49:21] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ Client] - read_device_info +[2023-Jun-02 15:49:21] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 15:49:21] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 15:49:21] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 15:49:21] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 15:49:21] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 15:49:21] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 15:49:21] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 15:49:21] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:49:21] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 15:49:21] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 19.399ms returns "O.K." +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.005ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.419ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 15:49:21] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.051ms +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:21] [debug] [ nRF52] - read_device_family +[2023-Jun-02 15:49:21] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 327 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:21] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.091ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.333ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:49:21] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.241ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 15:49:21] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:49:21] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 15:49:21] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 15:49:21] [trace] [ JLink] - InitTarget() end - Took 1.60ms +[2023-Jun-02 15:49:21] [trace] [ JLink] - InitTarget() end - Took 1.60ms +[2023-Jun-02 15:49:21] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:49:21] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 15:49:21] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:49:21] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 15:49:21] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:49:21] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 15:49:21] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:49:21] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 15:49:21] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:49:21] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 15:49:21] [trace] [ Client] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:49:21] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:49:21] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 15:49:21] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:49:21] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 15:49:21] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:49:21] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:49:21] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 15:49:21] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 15:49:21] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:49:21] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 15:49:21] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:49:21] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 15:49:21] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:49:21] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 15:49:21] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:49:21] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 15:49:21] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:49:21] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 15:49:21] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:49:21] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 12.688ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0xE0000FF +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 15:49:21] [trace] [ Worker] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 15:49:21] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:21] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:21] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:21] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:21] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:21] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:21] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:21] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:21] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:21] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:21] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:21] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ Client] - read_page_sizes +[2023-Jun-02 15:49:21] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:21] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.153ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.026ms +[2023-Jun-02 15:49:21] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:21] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.013ms +[2023-Jun-02 15:49:21] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:21] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:21] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:21] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:21] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:21] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:21] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:21] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:21] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:21] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:21] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:21] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 15:49:21] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 15:49:21] [debug] [ Client] - erase +[2023-Jun-02 15:49:21] [debug] [ nRF52] - erase_file +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.004ms returns 0x01 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - erase +[2023-Jun-02 15:49:21] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:49:21] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.381ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.277ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:49:21] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:49:21] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 15:49:21] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:49:21] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:49:21] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:49:21] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:49:21] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:49:21] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 3.269ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.626ms returns 0 (0x00000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:49:21] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:49:21] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:49:21] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:49:21] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 64.100ms +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.262ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:21] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:49:21] [ info] [ nRF52] - Erasing +[2023-Jun-02 15:49:21] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:49:21] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:49:21] [ info] [ nRF52] - Erasing flash range [0x00000000-0x00004D68] +[2023-Jun-02 15:49:21] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:49:21] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.605ms returns 0 (0x00000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.328ms returns 0 (0x00000000) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:21] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 15:49:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.308ms returns 0 (0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:49:22] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.357ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.385ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.252ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.294ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.328ms returns 0 (0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.308ms returns 0 (0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:49:22] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.267ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.385ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.264ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.364ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.308ms returns 0 (0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.284ms returns 0 (0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.376ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.407ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.011ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.518ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 1.355ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.439ms returns 0 (0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.348ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:49:22] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.354ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.395ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.290ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.281ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.332ms returns 0 (0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.332ms returns 0 (0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.011ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.491ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.020ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.647ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.014ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.389ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.351ms returns 0 (0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.009ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.370ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.009ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.371ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - erase_page +[2023-Jun-02 15:49:22] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.298ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.252ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.286ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.262ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.360ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.384ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.306ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - halt +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.325ms returns 0 (0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.351ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.285ms returns 0 (0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.359ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.360ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.380ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ Client] - Command erase_file executed for 659 milliseconds with result 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.356ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.334ms returns 0 (0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:49:22] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":570,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 15:49:22] [trace] [ Worker] - Command erase_file executed for 659 milliseconds with result 0 +[2023-Jun-02 15:49:22] [debug] [ Client] - program +[2023-Jun-02 15:49:22] [debug] [ nRF52] - program +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.018ms returns 0x01 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:22] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 15:49:22] [debug] [ nRF52] - program_file +[2023-Jun-02 15:49:22] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 15:49:22] [ info] [ nRF52] - Check program file +[2023-Jun-02 15:49:22] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:49:22] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.312ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.267ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.263ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.336ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.262ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.006ms returns TRUE +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.010ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.387ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.360ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:22] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.296ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.268ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.275ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.011ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.386ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:49:22] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:49:22] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:49:22] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:49:22] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:49:22] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:49:22] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":715,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:49:22] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.402ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.398ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.330ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.022ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.529ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.018ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.486ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.018ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.468ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.015ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.464ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.015ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.366ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.014ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.403ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.014ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.546ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.016ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.382ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.014ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.383ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.014ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.375ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.362ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.014ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.387ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":9,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:49:22] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:49:22] [ info] [ nRF52] - Program flash. +[2023-Jun-02 15:49:22] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:49:22] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_write +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - write +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.010ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.290ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.385ms returns 0 (0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.014ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.364ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_WriteMem(19816 bytes @ 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ Client] - Command program_file executed for 156 milliseconds with result 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 130.817ms returns 0x4D68 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.012ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.443ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.405ms returns 0 (0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.373ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:49:22] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":134,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.030ms +[2023-Jun-02 15:49:22] [trace] [ Worker] - Command program_file executed for 156 milliseconds with result 0 +[2023-Jun-02 15:49:22] [debug] [ Client] - verify +[2023-Jun-02 15:49:22] [debug] [ nRF52] - verify +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.027ms returns 0x01 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:22] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 15:49:22] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 15:49:22] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:49:22] [debug] [ nRF52] - init_device_info +[2023-Jun-02 15:49:22] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.293ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.264ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.312ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.328ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.265ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.264ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.267ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.269ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.011ms returns TRUE +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.022ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.384ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.013ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.421ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:22] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.383ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.364ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.320ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.291ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.269ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.015ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.358ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 15:49:22] [debug] [ nRF52] - read_device_info +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.265ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 15:49:22] [ info] [ nRF52] - Verify +[2023-Jun-02 15:49:22] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 15:49:22] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 15:49:22] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 15:49:22] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 15:49:22] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 15:49:22] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":927,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 15:49:22] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 15:49:22] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 15:49:22] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 15:49:22] [debug] [ nRF52] - loop_image +[2023-Jun-02 15:49:22] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_read +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(19840 bytes @ 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ Client] - Command verify_file executed for 151 milliseconds with result 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - -- Updating C cache (19840 bytes @ 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - -- Read from C cache (19816 bytes @ 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 132.713ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:49:22] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":132,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.023ms +[2023-Jun-02 15:49:22] [trace] [ Worker] - Command verify_file executed for 151 milliseconds with result 0 +[2023-Jun-02 15:49:22] [debug] [ Client] - sys_reset +[2023-Jun-02 15:49:22] [debug] [ nRF52] - sys_reset +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.262ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.277ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:49:22] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 15:49:22] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:49:22] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:22] [trace] [ Client] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 15:49:22] [debug] [ Client] - go +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 15:49:22] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 63.872ms +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:22] [trace] [ Worker] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 15:49:22] [debug] [ nRF52] - go +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_go +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 15:49:22] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 15:49:22] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - go +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 15:49:22] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 1.058ms +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 15:49:22] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 15:49:22] [debug] [ nRF52] - close +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - close +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 15:49:22] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:22] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:22] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:23] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 15:49:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:23] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 15:49:23] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 15:49:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:23] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 15:49:23] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 15:49:23] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:23] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:23] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 15:49:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:23] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 15:49:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 15:49:23] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 15:49:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:23] [trace] [ JLink] - JLINK_WriteU32_64(0xE000EDFC, 0x00000000) +[2023-Jun-02 15:49:23] [trace] [ JLink] - Debug reg: DEMCR +[2023-Jun-02 15:49:23] [trace] [ JLink] - CPU is running +[2023-Jun-02 15:49:23] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 15:49:23] [trace] [ JLink] - - 0.339ms returns 0 (0x00000000) +[2023-Jun-02 15:49:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:23] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:23] [debug] [SeggerBackend] - Shortcut, lock is on and debug region is powered. +[2023-Jun-02 15:49:23] [debug] [SeggerBackend] - unpower_debug_and_system_regions +[2023-Jun-02 15:49:23] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 15:49:23] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x01, 0x00000000) +[2023-Jun-02 15:49:23] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 15:49:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 15:49:23] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 15:49:23] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 15:49:23] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 15:49:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 15:49:23] [trace] [ JLink] - Value=0x00000040 +[2023-Jun-02 16:06:06] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:06:06] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 16:06:06] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 16:06:06] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:06:06] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 16:06:06] [ info] Library loaded, loading member functions. +[2023-Jun-02 16:06:06] [ info] Member functions succesfully loaded. +[2023-Jun-02 16:06:06] [debug] [ Client] - open +[2023-Jun-02 16:06:06] [debug] [ Client] - start +[2023-Jun-02 16:06:06] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence b9e8dd7b-e7a1-4b3c-bafe-675b5f5f6d23. +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 16:06:06] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 16:06:06] [debug] [ nRF52] - open +[2023-Jun-02 16:06:06] [debug] [ nRF52] - just_check_family +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 16:06:06] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 16:06:06] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:06:06] [debug] [ Client] - config +[2023-Jun-02 16:06:06] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:06] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 16:06:06] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 16:06:06] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 16:06:06] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 16:06:06] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:06:06] [debug] [ nRF52] - config +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 16:06:06] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:06] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 16:06:06] [trace] [ Client] - Command enum_emu_con_info executed for 104 milliseconds with result 0 +[2023-Jun-02 16:06:06] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:06] [trace] [ Worker] - Command enum_emu_con_info executed for 104 milliseconds with result 0 +[2023-Jun-02 16:06:06] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 16:06:06] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:06:06] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:06:06] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 16:06:06] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 16:06:06] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 16:06:06] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 16:06:06] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 16:06:06] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 16:06:06] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 16:06:06] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 16:06:06] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:06:06] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:06:06] [trace] [ Client] - Command connect_to_emu_with_snr executed for 342 milliseconds with result 0 +[2023-Jun-02 16:06:06] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 16:06:06] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:06] [debug] [ Client] - read_device_info +[2023-Jun-02 16:06:06] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 31.307ms returns "O.K." +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.002ms returns 0 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.461ms returns 0x00 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 16:06:06] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.050ms +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:06:06] [debug] [ nRF52] - read_device_family +[2023-Jun-02 16:06:06] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 342 milliseconds with result 0 +[2023-Jun-02 16:06:06] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:06:06] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:06] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.094ms returns 0 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.352ms returns 0 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 16:06:06] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:06] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.280ms returns 0 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 16:06:06] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:06:06] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:06:06] [trace] [ JLink] - - 0.247ms returns 0x00 +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:06] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 16:06:06] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:06:06] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:06:06] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 16:06:07] [trace] [ JLink] - InitTarget() end - Took 1.81ms +[2023-Jun-02 16:06:07] [trace] [ JLink] - InitTarget() end - Took 1.81ms +[2023-Jun-02 16:06:07] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:06:07] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:06:07] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:06:07] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:06:07] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:06:07] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:06:07] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:06:07] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:06:07] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:06:07] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:06:07] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:06:07] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:06:07] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:06:07] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:06:07] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:06:07] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:06:07] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:06:07] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:06:07] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:06:07] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 16:06:07] [trace] [ Client] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:06:07] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:06:07] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:06:07] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:06:07] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:06:07] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:06:07] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 13.130ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0xE0000FF +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.365ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 16:06:07] [trace] [ Worker] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:07] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.024ms +[2023-Jun-02 16:06:07] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:07] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:07] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:07] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:07] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:07] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:07] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:07] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:07] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:07] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:07] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:07] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:07] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:07] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.012ms +[2023-Jun-02 16:06:07] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:06:07] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:06:07] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:06:07] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:06:07] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:06:07] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:06:07] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:06:07] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:06:07] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:06:07] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:06:07] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:06:07] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:06:07] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ Client] - erase +[2023-Jun-02 16:06:07] [debug] [ nRF52] - erase_file +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.007ms returns 0x01 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - erase +[2023-Jun-02 16:06:07] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:06:07] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:06:07] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:06:07] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:06:07] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:06:07] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:06:07] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:06:07] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:06:07] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.368ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 3.234ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.613ms returns 0 (0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.265ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.264ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:06:07] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:06:07] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:06:07] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 64.380ms +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:07] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Erasing +[2023-Jun-02 16:06:07] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:06:07] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Erasing flash range [0x00000000-0x00004D68] +[2023-Jun-02 16:06:07] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:06:07] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.278ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.603ms returns 0 (0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.352ms returns 0 (0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.399ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 1.488ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.275ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.406ms returns 0 (0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:06:07] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.344ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.344ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.317ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.261ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.271ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.350ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.353ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.361ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.355ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.261ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.351ms returns 0 (0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.349ms returns 0 (0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.479ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.010ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.478ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.372ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.011ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.451ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.370ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.351ms returns 0 (0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:06:07] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.009ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.400ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.009ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.332ms returns 0 (0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.358ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.347ms returns 0 (0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.362ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.009ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.380ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.402ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.280ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.284ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.351ms returns 0 (0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:06:07] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.349ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.348ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.012ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.354ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.349ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.011ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.351ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.252ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.286ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.348ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.351ms returns 0 (0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.352ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.348ms returns 0 (0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.367ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.010ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.381ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.015ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.416ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:06:07] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.320ms returns 0 (0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.293ms returns 0 (0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.289ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ Client] - Command erase_file executed for 662 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.325ms returns 0 (0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.306ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:06:07] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":573,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.016ms +[2023-Jun-02 16:06:07] [trace] [ Worker] - Command erase_file executed for 662 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ Client] - program +[2023-Jun-02 16:06:07] [debug] [ nRF52] - program +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 16:06:07] [debug] [ nRF52] - program_file +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Check program file +[2023-Jun-02 16:06:07] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:06:07] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.383ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.149ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:06:07] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:06:07] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:06:07] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:06:07] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:06:07] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:06:07] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":712,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:06:07] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.287ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.281ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.306ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:06:07] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Program flash. +[2023-Jun-02 16:06:07] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:06:07] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_write +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - write +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.320ms returns 0 (0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.306ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(19816 bytes @ 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ Client] - Command program_file executed for 145 milliseconds with result 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 129.473ms returns 0x4D68 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.012ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.473ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.284ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.415ms returns 0 (0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.385ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:06:07] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":132,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.054ms +[2023-Jun-02 16:06:07] [trace] [ Worker] - Command program_file executed for 145 milliseconds with result 0 +[2023-Jun-02 16:06:07] [debug] [ Client] - verify +[2023-Jun-02 16:06:07] [debug] [ nRF52] - verify +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 16:06:07] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 16:06:07] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:06:07] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:06:07] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.265ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.351ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:06:07] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.268ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:07] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Verify +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:06:07] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:06:07] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:06:07] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:06:07] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:06:07] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":911,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:06:07] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:06:07] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:06:07] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 16:06:07] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:06:07] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:06:07] [debug] [ nRF52] - Just_read +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - read +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 16:06:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:07] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 16:06:07] [trace] [ JLink] - CPU_ReadMem(19840 bytes @ 0x00000000) +[2023-Jun-02 16:06:08] [trace] [ Client] - Command verify_file executed for 143 milliseconds with result 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - -- Updating C cache (19840 bytes @ 0x00000000) +[2023-Jun-02 16:06:08] [trace] [ JLink] - -- Read from C cache (19816 bytes @ 0x00000000) +[2023-Jun-02 16:06:08] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 133.325ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:06:08] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":133,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.084ms +[2023-Jun-02 16:06:08] [trace] [ Worker] - Command verify_file executed for 143 milliseconds with result 0 +[2023-Jun-02 16:06:08] [debug] [ Client] - sys_reset +[2023-Jun-02 16:06:08] [debug] [ nRF52] - sys_reset +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.007ms returns 0x01 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:08] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 16:06:08] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:08] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:08] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:08] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:08] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:08] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:08] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:08] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:08] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:08] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:08] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:06:08] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:08] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:08] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:06:08] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:06:08] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:06:08] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:06:08] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:06:08] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:08] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:08] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:08] [trace] [ Client] - Command sys_reset executed for 67 milliseconds with result 0 +[2023-Jun-02 16:06:08] [debug] [ Client] - go +[2023-Jun-02 16:06:08] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:08] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:06:08] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:08] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 64.717ms +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.006ms +[2023-Jun-02 16:06:08] [trace] [ Worker] - Command sys_reset executed for 67 milliseconds with result 0 +[2023-Jun-02 16:06:08] [debug] [ nRF52] - go +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:08] [debug] [ nRF52] - Just_go +[2023-Jun-02 16:06:08] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:08] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:08] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:08] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:08] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:08] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:08] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:08] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:08] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:08] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:08] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - go +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.003ms returns TRUE +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.004ms returns TRUE +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 16:06:08] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:06:08] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 1.151ms +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.005ms +[2023-Jun-02 16:06:08] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 16:06:08] [debug] [ nRF52] - close +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.004ms returns 0x01 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - close +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.003ms returns TRUE +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:08] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_WriteU32_64(0xE000EDFC, 0x00000000) +[2023-Jun-02 16:06:08] [trace] [ JLink] - Debug reg: DEMCR +[2023-Jun-02 16:06:08] [trace] [ JLink] - CPU is running +[2023-Jun-02 16:06:08] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.337ms returns 0 (0x00000000) +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - Shortcut, lock is on and debug region is powered. +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - unpower_debug_and_system_regions +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x01, 0x00000000) +[2023-Jun-02 16:06:08] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:08] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:08] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:08] [trace] [ JLink] - Value=0x00000040 +[2023-Jun-02 16:06:15] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:06:15] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 16:06:15] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 16:06:15] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:06:15] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 16:06:15] [ info] Library loaded, loading member functions. +[2023-Jun-02 16:06:15] [ info] Member functions succesfully loaded. +[2023-Jun-02 16:06:15] [debug] [ Client] - open +[2023-Jun-02 16:06:15] [debug] [ Client] - start +[2023-Jun-02 16:06:15] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence cfc186eb-14bf-4e7d-9667-83c98af18f77. +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 16:06:15] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 16:06:15] [debug] [ nRF52] - open +[2023-Jun-02 16:06:15] [debug] [ nRF52] - just_check_family +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 16:06:15] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ Client] - config +[2023-Jun-02 16:06:15] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 16:06:15] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 16:06:15] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 16:06:15] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 16:06:15] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 16:06:15] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - config +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 16:06:15] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 16:06:15] [trace] [ Client] - Command enum_emu_con_info executed for 106 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:15] [trace] [ Worker] - Command enum_emu_con_info executed for 106 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 16:06:15] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:06:15] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:06:15] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 16:06:15] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 16:06:15] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 16:06:15] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 16:06:15] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 16:06:15] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 16:06:15] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 16:06:15] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:06:15] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:06:15] [trace] [ Client] - Command connect_to_emu_with_snr executed for 356 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 16:06:15] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ Client] - read_device_info +[2023-Jun-02 16:06:15] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 27.471ms returns "O.K." +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.005ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.482ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 16:06:15] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.045ms +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.002ms returns 1050282167 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:06:15] [debug] [ nRF52] - read_device_family +[2023-Jun-02 16:06:15] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 356 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:06:15] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.139ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.347ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.153ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:06:15] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.448ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 16:06:15] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:06:15] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:06:15] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 16:06:15] [trace] [ JLink] - InitTarget() end - Took 1.65ms +[2023-Jun-02 16:06:15] [trace] [ JLink] - InitTarget() end - Took 1.65ms +[2023-Jun-02 16:06:15] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:06:15] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:06:15] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:06:15] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:06:15] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:06:15] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:06:15] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:06:15] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:06:15] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:06:15] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:06:15] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:06:15] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:06:15] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:06:15] [trace] [ Client] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:06:15] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:06:15] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:06:15] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:06:15] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:06:15] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:06:15] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:06:15] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:06:15] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:06:15] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:06:15] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:06:15] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 13.120ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0xE0000FF +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 16:06:15] [trace] [ Worker] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:06:15] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:15] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:15] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:15] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:15] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:15] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:15] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:15] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:15] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:15] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:15] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:15] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:15] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:15] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.024ms +[2023-Jun-02 16:06:15] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:15] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.359ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.355ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.017ms +[2023-Jun-02 16:06:15] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:06:15] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:06:15] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:06:15] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:06:15] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:06:15] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:06:15] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:06:15] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:06:15] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:06:15] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:06:15] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:06:15] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:06:15] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:15] [debug] [ Client] - erase +[2023-Jun-02 16:06:15] [debug] [ nRF52] - erase_file +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - erase +[2023-Jun-02 16:06:15] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:06:15] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.357ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.260ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:06:15] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:06:15] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:06:15] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:06:15] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:06:15] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:06:15] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:06:15] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:06:15] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.253ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.305ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.367ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 3.281ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.564ms returns 0 (0x00000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:06:15] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:06:15] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:06:15] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:06:15] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 63.504ms +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:15] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:06:15] [ info] [ nRF52] - Erasing +[2023-Jun-02 16:06:15] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:06:15] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:06:15] [ info] [ nRF52] - Erasing flash range [0x00000000-0x00004D68] +[2023-Jun-02 16:06:15] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:06:15] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.365ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.671ms returns 0 (0x00000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.314ms returns 0 (0x00000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.413ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.402ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.436ms returns 0 (0x00000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:06:15] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.366ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.350ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:06:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:15] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.326ms returns 0 (0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.308ms returns 0 (0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.386ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.420ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.460ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.370ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.279ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.415ms returns 0 (0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.384ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:06:16] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.265ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.314ms returns 0 (0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.310ms returns 0 (0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.392ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.381ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.381ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.409ms returns 0 (0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.358ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.364ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:06:16] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.281ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.268ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.286ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.377ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.310ms returns 0 (0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.281ms returns 0 (0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.368ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.363ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.326ms returns 0 (0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:06:16] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.356ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.380ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.278ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.308ms returns 0 (0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.309ms returns 0 (0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.375ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.382ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.359ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ Client] - Command erase_file executed for 655 milliseconds with result 0 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.366ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.290ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.364ms returns 0 (0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:06:16] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":567,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.016ms +[2023-Jun-02 16:06:16] [trace] [ Worker] - Command erase_file executed for 655 milliseconds with result 0 +[2023-Jun-02 16:06:16] [debug] [ Client] - program +[2023-Jun-02 16:06:16] [debug] [ nRF52] - program +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.044ms returns 0x01 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:16] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 16:06:16] [debug] [ nRF52] - program_file +[2023-Jun-02 16:06:16] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 16:06:16] [ info] [ nRF52] - Check program file +[2023-Jun-02 16:06:16] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:06:16] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.276ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.286ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.004ms returns TRUE +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:16] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.267ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:06:16] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:06:16] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:06:16] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:06:16] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:06:16] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:06:16] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":710,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:06:16] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.274ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.376ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.306ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":6,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:06:16] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:06:16] [ info] [ nRF52] - Program flash. +[2023-Jun-02 16:06:16] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:06:16] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_write +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - write +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.326ms returns 0 (0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_WriteMem(19816 bytes @ 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ Client] - Command program_file executed for 150 milliseconds with result 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 129.421ms returns 0x4D68 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.380ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.323ms returns 0 (0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:06:16] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":132,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.021ms +[2023-Jun-02 16:06:16] [trace] [ Worker] - Command program_file executed for 150 milliseconds with result 0 +[2023-Jun-02 16:06:16] [debug] [ Client] - verify +[2023-Jun-02 16:06:16] [debug] [ nRF52] - verify +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.018ms returns 0x01 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:16] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 16:06:16] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 16:06:16] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:06:16] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:06:16] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.268ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.269ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.300ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.289ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.007ms returns TRUE +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.014ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.451ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.010ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.452ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:16] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:06:16] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:16] [ info] [ nRF52] - Verify +[2023-Jun-02 16:06:16] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:06:16] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:06:16] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:06:16] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:06:16] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:06:16] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":914,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:06:16] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:06:16] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:06:16] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 16:06:16] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:06:16] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_read +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(19840 bytes @ 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ Client] - Command verify_file executed for 148 milliseconds with result 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - -- Updating C cache (19840 bytes @ 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - -- Read from C cache (19816 bytes @ 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 132.847ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:06:16] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":132,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.026ms +[2023-Jun-02 16:06:16] [trace] [ Worker] - Command verify_file executed for 148 milliseconds with result 0 +[2023-Jun-02 16:06:16] [debug] [ Client] - sys_reset +[2023-Jun-02 16:06:16] [debug] [ nRF52] - sys_reset +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.022ms returns 0x01 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.327ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.308ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.281ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.289ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.320ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.008ms returns TRUE +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.010ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:06:16] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:06:16] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:06:16] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:16] [trace] [ Client] - Command sys_reset executed for 68 milliseconds with result 0 +[2023-Jun-02 16:06:16] [debug] [ Client] - go +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 64.647ms +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:06:16] [trace] [ Worker] - Command sys_reset executed for 68 milliseconds with result 0 +[2023-Jun-02 16:06:16] [debug] [ nRF52] - go +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_go +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:16] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - go +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 1.104ms +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:06:16] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 16:06:16] [debug] [ nRF52] - close +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - close +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.263ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_WriteU32_64(0xE000EDFC, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Debug reg: DEMCR +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU is running +[2023-Jun-02 16:06:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.328ms returns 0 (0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - Shortcut, lock is on and debug region is powered. +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - unpower_debug_and_system_regions +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x01, 0x00000000) +[2023-Jun-02 16:06:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:16] [trace] [ JLink] - Value=0x00000040 +[2023-Jun-02 16:06:19] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:06:19] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 16:06:19] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 16:06:19] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:06:19] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 16:06:19] [ info] Library loaded, loading member functions. +[2023-Jun-02 16:06:19] [ info] Member functions succesfully loaded. +[2023-Jun-02 16:06:19] [debug] [ Client] - open +[2023-Jun-02 16:06:19] [debug] [ Client] - start +[2023-Jun-02 16:06:19] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence e7c65f8c-eecd-4ad1-a64f-e9c460b4cdd2. +[2023-Jun-02 16:06:19] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 16:06:19] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 16:06:19] [debug] [ nRF52] - open +[2023-Jun-02 16:06:19] [debug] [ nRF52] - just_check_family +[2023-Jun-02 16:06:19] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 16:06:19] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 16:06:19] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:06:19] [debug] [ Client] - config +[2023-Jun-02 16:06:19] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:19] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 16:06:19] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 16:06:19] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 16:06:19] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 16:06:19] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 16:06:19] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 16:06:19] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 16:06:19] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:06:19] [debug] [ nRF52] - config +[2023-Jun-02 16:06:19] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 16:06:19] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:19] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 16:06:19] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:19] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 16:06:19] [trace] [ Client] - Command enum_emu_con_info executed for 107 milliseconds with result 0 +[2023-Jun-02 16:06:19] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 16:06:19] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:19] [trace] [ Worker] - Command enum_emu_con_info executed for 107 milliseconds with result 0 +[2023-Jun-02 16:06:19] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 16:06:19] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:19] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 16:06:19] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:19] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 16:06:19] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 16:06:20] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:06:20] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:06:20] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 16:06:20] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 16:06:20] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 16:06:20] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 16:06:20] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 16:06:20] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 16:06:20] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 16:06:20] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:06:20] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:06:20] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 19.226ms returns "O.K." +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 16:06:20] [trace] [ Client] - Command connect_to_emu_with_snr executed for 344 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 16:06:20] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ Client] - read_device_info +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.378ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 16:06:20] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.049ms +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:06:20] [debug] [ nRF52] - read_device_family +[2023-Jun-02 16:06:20] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 344 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:06:20] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.139ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.350ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.275ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.280ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns FALSE +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:06:20] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.325ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 16:06:20] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:06:20] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:06:20] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 16:06:20] [trace] [ JLink] - InitTarget() end - Took 1.69ms +[2023-Jun-02 16:06:20] [trace] [ JLink] - InitTarget() end - Took 1.69ms +[2023-Jun-02 16:06:20] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:06:20] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:06:20] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:06:20] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:06:20] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:06:20] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:06:20] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:06:20] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:06:20] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:06:20] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:06:20] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:06:20] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:06:20] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:06:20] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:06:20] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:06:20] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:20] [trace] [ Client] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:06:20] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:06:20] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:06:20] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:06:20] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:06:20] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:06:20] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:06:20] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:06:20] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 13.283ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.004ms returns 0xE0000FF +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.045ms +[2023-Jun-02 16:06:20] [trace] [ Worker] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:20] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ Client] - Command read_memory_descriptors executed for 6 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:06:20] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:20] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:20] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:20] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:20] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:20] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:20] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:20] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:20] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:20] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:20] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:20] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:06:20] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.309ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.005ms returns TRUE +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.351ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.069ms +[2023-Jun-02 16:06:20] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.004ms returns 0x01 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:20] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.293ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms returns TRUE +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.025ms +[2023-Jun-02 16:06:20] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.009ms returns 0x01 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.005ms +[2023-Jun-02 16:06:20] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:06:20] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:06:20] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:06:20] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:06:20] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:06:20] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:06:20] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:06:20] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:06:20] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:06:20] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:06:20] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:06:20] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [ Client] - erase +[2023-Jun-02 16:06:20] [debug] [ nRF52] - erase_file +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.007ms returns 0x01 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - erase +[2023-Jun-02 16:06:20] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:06:20] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:06:20] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:06:20] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:06:20] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:06:20] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:06:20] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:06:20] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:06:20] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:06:20] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.288ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 3.310ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.363ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.618ms returns 0 (0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.365ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:06:20] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.287ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:06:20] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:06:20] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:06:20] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 64.046ms +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:20] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:06:20] [ info] [ nRF52] - Erasing +[2023-Jun-02 16:06:20] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:06:20] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:06:20] [ info] [ nRF52] - Erasing flash range [0x00000000-0x00004D68] +[2023-Jun-02 16:06:20] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:06:20] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.300ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.284ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.015ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.386ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.820ms returns 0 (0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.350ms returns 0 (0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.358ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.389ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.320ms returns 0 (0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:06:20] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.381ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.351ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.267ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.325ms returns 0 (0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.358ms returns 0 (0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.351ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.339ms returns 0 (0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:06:20] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.306ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.309ms returns 0 (0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.364ms returns 0 (0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.377ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.367ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.363ms returns 0 (0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:06:20] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.265ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.380ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.363ms returns 0 (0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.308ms returns 0 (0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.357ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.332ms returns 0 (0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.379ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:06:20] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.360ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.358ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.376ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.365ms returns 0 (0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.346ms returns 0 (0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.360ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.410ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.323ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.379ms returns 0 (0x00000000) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [trace] [ Client] - Command erase_file executed for 655 milliseconds with result 0 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:20] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:06:20] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:06:20] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 16:06:20] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:20] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:06:20] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":567,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:06:20] [trace] [ JLink] - - 0.019ms +[2023-Jun-02 16:06:20] [trace] [ Worker] - Command erase_file executed for 655 milliseconds with result 0 +[2023-Jun-02 16:06:21] [debug] [ Client] - program +[2023-Jun-02 16:06:21] [debug] [ nRF52] - program +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.008ms returns 0x01 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:21] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 16:06:21] [debug] [ nRF52] - program_file +[2023-Jun-02 16:06:21] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 16:06:21] [ info] [ nRF52] - Check program file +[2023-Jun-02 16:06:21] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:06:21] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.282ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:21] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:06:21] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:06:21] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:06:21] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:06:21] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:06:21] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:06:21] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":706,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:06:21] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.252ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.278ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.357ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":6,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:06:21] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:06:21] [ info] [ nRF52] - Program flash. +[2023-Jun-02 16:06:21] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:06:21] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_write +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - write +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.324ms returns 0 (0x00000000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_WriteMem(19816 bytes @ 0x00000000) +[2023-Jun-02 16:06:21] [trace] [ Client] - Command program_file executed for 145 milliseconds with result 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 129.402ms returns 0x4D68 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.362ms returns 1 (0x1) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.351ms returns 0 (0x00000000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:06:21] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":131,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.017ms +[2023-Jun-02 16:06:21] [trace] [ Worker] - Command program_file executed for 144 milliseconds with result 0 +[2023-Jun-02 16:06:21] [debug] [ Client] - verify +[2023-Jun-02 16:06:21] [debug] [ nRF52] - verify +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.008ms returns 0x01 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:21] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 16:06:21] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 16:06:21] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:06:21] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:06:21] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.349ms returns 1 (0x1) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:21] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:06:21] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:06:21] [ info] [ nRF52] - Verify +[2023-Jun-02 16:06:21] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:06:21] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:06:21] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:06:21] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:06:21] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:06:21] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":904,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:06:21] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:06:21] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:06:21] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 16:06:21] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:06:21] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_read +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(19840 bytes @ 0x00000000) +[2023-Jun-02 16:06:21] [trace] [ Client] - Command verify_file executed for 142 milliseconds with result 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - -- Updating C cache (19840 bytes @ 0x00000000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - -- Read from C cache (19816 bytes @ 0x00000000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 132.911ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:06:21] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":132,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.049ms +[2023-Jun-02 16:06:21] [trace] [ Worker] - Command verify_file executed for 142 milliseconds with result 0 +[2023-Jun-02 16:06:21] [debug] [ Client] - sys_reset +[2023-Jun-02 16:06:21] [debug] [ nRF52] - sys_reset +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.009ms returns 0x01 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.344ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:06:21] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:06:21] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:06:21] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:21] [trace] [ Client] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 16:06:21] [debug] [ Client] - go +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 63.679ms +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.004ms +[2023-Jun-02 16:06:21] [trace] [ Worker] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 16:06:21] [debug] [ nRF52] - go +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_go +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:06:21] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:06:21] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - go +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 1.137ms +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:06:21] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 16:06:21] [debug] [ nRF52] - close +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - close +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_WriteU32_64(0xE000EDFC, 0x00000000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - Debug reg: DEMCR +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU is running +[2023-Jun-02 16:06:21] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.320ms returns 0 (0x00000000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - Shortcut, lock is on and debug region is powered. +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - unpower_debug_and_system_regions +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x01, 0x00000000) +[2023-Jun-02 16:06:21] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:06:21] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:06:21] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:07:33] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:07:33] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 16:07:33] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 16:07:33] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:07:33] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 16:07:33] [ info] Library loaded, loading member functions. +[2023-Jun-02 16:07:33] [ info] Member functions succesfully loaded. +[2023-Jun-02 16:07:33] [debug] [ Client] - open +[2023-Jun-02 16:07:33] [debug] [ Client] - start +[2023-Jun-02 16:07:33] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence 2d2b7f4b-a06f-4a24-a774-a890a609efac. +[2023-Jun-02 16:07:33] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 16:07:33] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 16:07:33] [debug] [ nRF52] - open +[2023-Jun-02 16:07:33] [debug] [ nRF52] - just_check_family +[2023-Jun-02 16:07:33] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 16:07:33] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 16:07:33] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:07:33] [debug] [ Client] - config +[2023-Jun-02 16:07:33] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:33] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 16:07:33] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 16:07:33] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 16:07:33] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 16:07:33] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 16:07:33] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 16:07:33] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 16:07:33] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:07:33] [debug] [ nRF52] - config +[2023-Jun-02 16:07:33] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 16:07:33] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:33] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 16:07:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:33] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 16:07:33] [trace] [ Client] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 16:07:33] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 16:07:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:33] [trace] [ Worker] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 16:07:33] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 16:07:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:33] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 16:07:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:33] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 16:07:33] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 16:07:34] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:07:34] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:07:34] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 16:07:34] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 16:07:34] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 16:07:34] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 16:07:34] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 16:07:34] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 16:07:34] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 16:07:34] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:07:34] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:07:34] [trace] [ Client] - Command connect_to_emu_with_snr executed for 342 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 16:07:34] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ Client] - read_device_info +[2023-Jun-02 16:07:34] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 29.502ms returns "O.K." +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.004ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.463ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 16:07:34] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.049ms +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms returns 2000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms returns 1050282167 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:07:34] [debug] [ nRF52] - read_device_family +[2023-Jun-02 16:07:34] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 342 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:07:34] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.134ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.348ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.003ms returns FALSE +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:07:34] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.384ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 16:07:34] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:07:34] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:07:34] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 16:07:34] [trace] [ JLink] - InitTarget() end - Took 1.75ms +[2023-Jun-02 16:07:34] [trace] [ JLink] - InitTarget() end - Took 1.75ms +[2023-Jun-02 16:07:34] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:07:34] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:07:34] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:07:34] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:07:34] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:07:34] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:07:34] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:07:34] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:07:34] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:07:34] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:07:34] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:07:34] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:07:34] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:07:34] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:07:34] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:07:34] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:07:34] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:07:34] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:07:34] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:07:34] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:07:34] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:07:34] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 16:07:34] [trace] [ Client] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:07:34] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:07:34] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:07:34] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:07:34] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 12.863ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0xE0000FF +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 16:07:34] [trace] [ Worker] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.269ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:34] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.453ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.023ms +[2023-Jun-02 16:07:34] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:34] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:07:34] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:07:34] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:07:34] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:07:34] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:07:34] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:07:34] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:07:34] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:07:34] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:07:34] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:07:34] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:07:34] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:07:34] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.017ms +[2023-Jun-02 16:07:34] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:07:34] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:07:34] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:07:34] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:07:34] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.021ms returns 0x01 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:07:34] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:07:34] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:07:34] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:07:34] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:07:34] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:07:34] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:07:34] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:07:34] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [ Client] - erase +[2023-Jun-02 16:07:34] [debug] [ nRF52] - erase_file +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.009ms returns 0x01 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - erase +[2023-Jun-02 16:07:34] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:07:34] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.272ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.003ms returns TRUE +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:07:34] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:07:34] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:07:34] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:07:34] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:07:34] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:07:34] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:07:34] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:07:34] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.318ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.294ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.300ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.350ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.306ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 3.342ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.385ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 1.436ms returns 0 (0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.021ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.365ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":13,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:07:34] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.269ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.290ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.011ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:07:34] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:07:34] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:07:34] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 64.048ms +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:34] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:07:34] [ info] [ nRF52] - Erasing +[2023-Jun-02 16:07:34] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:07:34] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:07:34] [ info] [ nRF52] - Erasing flash range [0x00000000-0x00004D68] +[2023-Jun-02 16:07:34] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:07:34] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.264ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.288ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.355ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.374ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.279ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.352ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 1.515ms returns 0 (0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.342ms returns 0 (0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.359ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.010ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.420ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.358ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.340ms returns 0 (0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.290ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:07:34] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.290ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.366ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.308ms returns 0 (0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.369ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.280ms returns 0 (0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.362ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.326ms returns 0 (0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:07:34] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.355ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.357ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.382ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.153ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.261ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.393ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.359ms returns 0 (0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.381ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.312ms returns 0 (0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.410ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.011ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.537ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.011ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.609ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.420ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.331ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.336ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.405ms returns 0 (0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.374ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.365ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:07:34] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.252ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.285ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.325ms returns 0 (0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.300ms returns 0 (0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.010ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.374ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.011ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.011ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.430ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.348ms returns 0 (0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:07:34] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.253ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.320ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.353ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.349ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.467ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.014ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.368ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.384ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.362ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.352ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.391ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.014ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.456ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.273ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.317ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.278ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.274ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.434ms returns 0 (0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.013ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.423ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.287ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.378ms returns 0 (0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.478ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ Client] - Command erase_file executed for 667 milliseconds with result 0 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:07:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:07:34] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:07:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:34] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:07:34] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":573,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:07:34] [trace] [ JLink] - - 0.016ms +[2023-Jun-02 16:07:34] [trace] [ Worker] - Command erase_file executed for 667 milliseconds with result 0 +[2023-Jun-02 16:07:35] [debug] [ Client] - program +[2023-Jun-02 16:07:35] [debug] [ nRF52] - program +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:35] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 16:07:35] [debug] [ nRF52] - program_file +[2023-Jun-02 16:07:35] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 16:07:35] [ info] [ nRF52] - Check program file +[2023-Jun-02 16:07:35] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:07:35] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:35] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:07:35] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:07:35] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:07:35] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:07:35] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:07:35] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:07:35] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":715,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:07:35] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.267ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.378ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:07:35] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:07:35] [ info] [ nRF52] - Program flash. +[2023-Jun-02 16:07:35] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:07:35] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_write +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - write +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.281ms returns 0 (0x00000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_WriteMem(19816 bytes @ 0x00000000) +[2023-Jun-02 16:07:35] [trace] [ Client] - Command program_file executed for 145 milliseconds with result 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 129.404ms returns 0x4D68 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.016ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.390ms returns 1 (0x1) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.372ms returns 0 (0x00000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:07:35] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":132,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.052ms +[2023-Jun-02 16:07:35] [trace] [ Worker] - Command program_file executed for 145 milliseconds with result 0 +[2023-Jun-02 16:07:35] [debug] [ Client] - verify +[2023-Jun-02 16:07:35] [debug] [ nRF52] - verify +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.027ms returns 0x01 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:35] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 16:07:35] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 16:07:35] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:07:35] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:07:35] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.006ms returns TRUE +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.010ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.396ms returns 1 (0x1) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.389ms returns 1 (0x1) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:35] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.280ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.319ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.017ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.465ms returns 1 (0x1) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.409ms returns 1 (0x1) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:07:35] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.278ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.283ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:35] [ info] [ nRF52] - Verify +[2023-Jun-02 16:07:35] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:07:35] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:07:35] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:07:35] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:07:35] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:07:35] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":919,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:07:35] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:07:35] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:07:35] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 16:07:35] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:07:35] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_read +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(19840 bytes @ 0x00000000) +[2023-Jun-02 16:07:35] [trace] [ Client] - Command verify_file executed for 148 milliseconds with result 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - -- Updating C cache (19840 bytes @ 0x00000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - -- Read from C cache (19816 bytes @ 0x00000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 132.858ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:07:35] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":133,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.084ms +[2023-Jun-02 16:07:35] [trace] [ Worker] - Command verify_file executed for 148 milliseconds with result 0 +[2023-Jun-02 16:07:35] [debug] [ Client] - sys_reset +[2023-Jun-02 16:07:35] [debug] [ nRF52] - sys_reset +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.016ms returns 0x01 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.287ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.285ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.308ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.280ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.005ms returns TRUE +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.010ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:07:35] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:07:35] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:07:35] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:07:35] [trace] [ Client] - Command sys_reset executed for 67 milliseconds with result 0 +[2023-Jun-02 16:07:35] [debug] [ Client] - go +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 64.530ms +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.010ms +[2023-Jun-02 16:07:35] [trace] [ Worker] - Command sys_reset executed for 67 milliseconds with result 0 +[2023-Jun-02 16:07:35] [debug] [ nRF52] - go +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.007ms returns 0x01 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_go +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ Client] - Command go executed for 4 milliseconds with result 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - go +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.006ms returns TRUE +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.007ms returns TRUE +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 1.114ms +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.007ms +[2023-Jun-02 16:07:35] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 16:07:35] [debug] [ nRF52] - close +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - close +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.005ms returns TRUE +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_WriteU32_64(0xE000EDFC, 0x00000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - Debug reg: DEMCR +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU is running +[2023-Jun-02 16:07:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.355ms returns 0 (0x00000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - Shortcut, lock is on and debug region is powered. +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - unpower_debug_and_system_regions +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x01, 0x00000000) +[2023-Jun-02 16:07:35] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:07:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:07:48] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:07:48] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 16:07:48] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 16:07:48] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:07:48] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 16:07:48] [ info] Library loaded, loading member functions. +[2023-Jun-02 16:07:48] [ info] Member functions succesfully loaded. +[2023-Jun-02 16:07:48] [debug] [ Client] - open +[2023-Jun-02 16:07:48] [debug] [ Client] - start +[2023-Jun-02 16:07:48] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence a2b69a08-b983-4479-83f5-3bafaabd7e62. +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 16:07:48] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 16:07:48] [debug] [ nRF52] - open +[2023-Jun-02 16:07:48] [debug] [ nRF52] - just_check_family +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 16:07:48] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ Client] - config +[2023-Jun-02 16:07:48] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 16:07:48] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 16:07:48] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 16:07:48] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 16:07:48] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 16:07:48] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - config +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 16:07:48] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 16:07:48] [trace] [ Client] - Command enum_emu_con_info executed for 101 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:48] [trace] [ Worker] - Command enum_emu_con_info executed for 100 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 16:07:48] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:07:48] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:07:48] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 16:07:48] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 16:07:48] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 16:07:48] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 16:07:48] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 16:07:48] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 16:07:48] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 16:07:48] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:07:48] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:07:48] [trace] [ Client] - Command connect_to_emu_with_snr executed for 344 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 16:07:48] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ Client] - read_device_info +[2023-Jun-02 16:07:48] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 31.676ms returns "O.K." +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.005ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.399ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 16:07:48] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.005ms +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.049ms +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.002ms returns 2000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.002ms returns 1050282167 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:07:48] [debug] [ nRF52] - read_device_family +[2023-Jun-02 16:07:48] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 344 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:07:48] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.135ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.367ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.003ms returns FALSE +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:07:48] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.357ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 16:07:48] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:07:48] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:07:48] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 16:07:48] [trace] [ JLink] - InitTarget() end - Took 1.68ms +[2023-Jun-02 16:07:48] [trace] [ JLink] - InitTarget() end - Took 1.68ms +[2023-Jun-02 16:07:48] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:07:48] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:07:48] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:07:48] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:07:48] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:07:48] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:07:48] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:07:48] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:07:48] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:07:48] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:07:48] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:07:48] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:07:48] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:07:48] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:07:48] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:07:48] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:07:48] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:07:48] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 16:07:48] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:07:48] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 16:07:48] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:07:48] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 16:07:48] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:07:48] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 16:07:48] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:07:48] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 16:07:48] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:07:48] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 16:07:48] [trace] [ Client] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:07:48] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:07:48] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:07:48] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 12.834ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0xE0000FF +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.290ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 16:07:48] [trace] [ Worker] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:48] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.025ms +[2023-Jun-02 16:07:48] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:48] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.277ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:07:48] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:07:48] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:07:48] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:07:48] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:07:48] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:07:48] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:07:48] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:07:48] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:07:48] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:07:48] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:07:48] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:07:48] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.013ms +[2023-Jun-02 16:07:48] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:07:48] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:07:48] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:07:48] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:07:48] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:07:48] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:07:48] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:07:48] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:07:48] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:07:48] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:07:48] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:07:48] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:07:48] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:07:48] [debug] [ Client] - erase +[2023-Jun-02 16:07:48] [debug] [ nRF52] - erase_file +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - erase +[2023-Jun-02 16:07:48] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:07:48] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.262ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.288ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.307ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.280ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.364ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:07:48] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:07:48] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:07:48] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:07:48] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:07:48] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:07:48] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:07:48] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:07:48] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.253ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.289ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.265ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 3.222ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.587ms returns 0 (0x00000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:07:48] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:07:48] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:07:48] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:07:48] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 63.863ms +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:48] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:07:48] [ info] [ nRF52] - Erasing +[2023-Jun-02 16:07:48] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:07:48] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:07:48] [ info] [ nRF52] - Erasing flash range [0x00000000-0x00004D68] +[2023-Jun-02 16:07:48] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:07:48] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.289ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.358ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.358ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.265ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.264ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.265ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.664ms returns 0 (0x00000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.355ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:48] [trace] [ JLink] - - 0.415ms returns 1 (0x1) +[2023-Jun-02 16:07:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.420ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.013ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.548ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.365ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.399ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.555ms returns 0 (0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.010ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.374ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:07:49] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.362ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.403ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.354ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.358ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.397ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.333ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.326ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.359ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.362ms returns 0 (0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.360ms returns 0 (0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.009ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.452ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.016ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.449ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.363ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.267ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.366ms returns 0 (0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:07:49] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.304ms returns 0 (0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.305ms returns 0 (0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.370ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.451ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.009ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.453ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.440ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.325ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.283ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.435ms returns 0 (0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:07:49] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.319ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.313ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.286ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.292ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.352ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.379ms returns 0 (0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.372ms returns 0 (0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.013ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.361ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.010ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.377ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.321ms returns 0 (0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.358ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:07:49] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.269ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.286ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.358ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.327ms returns 0 (0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.306ms returns 0 (0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.348ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.011ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.512ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ Client] - Command erase_file executed for 662 milliseconds with result 0 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.010ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.491ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.372ms returns 0 (0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:07:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":573,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.053ms +[2023-Jun-02 16:07:49] [trace] [ Worker] - Command erase_file executed for 662 milliseconds with result 0 +[2023-Jun-02 16:07:49] [debug] [ Client] - program +[2023-Jun-02 16:07:49] [debug] [ nRF52] - program +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.008ms returns 0x01 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:49] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 16:07:49] [debug] [ nRF52] - program_file +[2023-Jun-02 16:07:49] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 16:07:49] [ info] [ nRF52] - Check program file +[2023-Jun-02 16:07:49] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:07:49] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.252ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:49] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.291ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:07:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:07:49] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:07:49] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:07:49] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:07:49] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:07:49] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":713,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:07:49] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.290ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.362ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.311ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:07:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:07:49] [ info] [ nRF52] - Program flash. +[2023-Jun-02 16:07:49] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:07:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_write +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - write +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.324ms returns 0 (0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_WriteMem(19816 bytes @ 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ Client] - Command program_file executed for 146 milliseconds with result 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 129.419ms returns 0x4D68 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.427ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.274ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.276ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.372ms returns 0 (0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:07:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":132,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.017ms +[2023-Jun-02 16:07:49] [trace] [ Worker] - Command program_file executed for 146 milliseconds with result 0 +[2023-Jun-02 16:07:49] [debug] [ Client] - verify +[2023-Jun-02 16:07:49] [debug] [ nRF52] - verify +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:49] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 16:07:49] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 16:07:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:07:49] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:07:49] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:49] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.386ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:07:49] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:07:49] [ info] [ nRF52] - Verify +[2023-Jun-02 16:07:49] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:07:49] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:07:49] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:07:49] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:07:49] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:07:49] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":911,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:07:49] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:07:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:07:49] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 16:07:49] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:07:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_read +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(19840 bytes @ 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ Client] - Command verify_file executed for 142 milliseconds with result 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - -- Updating C cache (19840 bytes @ 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - -- Read from C cache (19816 bytes @ 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 132.940ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:07:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":132,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.027ms +[2023-Jun-02 16:07:49] [trace] [ Worker] - Command verify_file executed for 142 milliseconds with result 0 +[2023-Jun-02 16:07:49] [debug] [ Client] - sys_reset +[2023-Jun-02 16:07:49] [debug] [ nRF52] - sys_reset +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.009ms returns 0x01 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:07:49] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:49] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:07:49] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:07:49] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:07:49] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:07:49] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:07:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:07:50] [trace] [ Client] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 16:07:50] [debug] [ Client] - go +[2023-Jun-02 16:07:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:07:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:07:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:07:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 64.193ms +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:07:50] [trace] [ Worker] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 16:07:50] [debug] [ nRF52] - go +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:50] [debug] [ nRF52] - Just_go +[2023-Jun-02 16:07:50] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:07:50] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:50] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:07:50] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 0.272ms returns 0 +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 0.267ms returns 0 +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:50] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:07:50] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:50] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - go +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 16:07:50] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:07:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 1.057ms +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:07:50] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 16:07:50] [debug] [ nRF52] - close +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - close +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:07:50] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_WriteU32_64(0xE000EDFC, 0x00000000) +[2023-Jun-02 16:07:50] [trace] [ JLink] - Debug reg: DEMCR +[2023-Jun-02 16:07:50] [trace] [ JLink] - CPU is running +[2023-Jun-02 16:07:50] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 0.307ms returns 0 (0x00000000) +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - Shortcut, lock is on and debug region is powered. +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - unpower_debug_and_system_regions +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:07:50] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x01, 0x00000000) +[2023-Jun-02 16:07:50] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:07:50] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:02] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:08:02] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 16:08:02] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 16:08:02] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:08:02] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 16:08:02] [ info] Library loaded, loading member functions. +[2023-Jun-02 16:08:02] [ info] Member functions succesfully loaded. +[2023-Jun-02 16:08:02] [debug] [ Client] - open +[2023-Jun-02 16:08:02] [debug] [ Client] - start +[2023-Jun-02 16:08:02] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence 04b5b978-072f-416c-91e5-e6e7a976cb8b. +[2023-Jun-02 16:08:02] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 16:08:02] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 16:08:02] [debug] [ nRF52] - open +[2023-Jun-02 16:08:02] [debug] [ nRF52] - just_check_family +[2023-Jun-02 16:08:02] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 16:08:02] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 16:08:02] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:08:02] [debug] [ Client] - config +[2023-Jun-02 16:08:02] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:02] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 16:08:02] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 16:08:02] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 16:08:02] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 16:08:02] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 16:08:02] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 16:08:02] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 16:08:02] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:08:02] [debug] [ nRF52] - config +[2023-Jun-02 16:08:02] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 16:08:02] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:02] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 16:08:02] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:08:02] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 16:08:02] [trace] [ Client] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 16:08:02] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 16:08:02] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:08:02] [trace] [ Worker] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 16:08:02] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 16:08:02] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:08:02] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 16:08:02] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:08:02] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 16:08:02] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 16:08:02] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 16:08:03] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:08:03] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:08:03] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 16:08:03] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 16:08:03] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 16:08:03] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 16:08:03] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 16:08:03] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 16:08:03] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 16:08:03] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:08:03] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:08:03] [trace] [ Client] - Command connect_to_emu_with_snr executed for 348 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 16:08:03] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ Client] - read_device_info +[2023-Jun-02 16:08:03] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 29.526ms returns "O.K." +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.004ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.436ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 16:08:03] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.049ms +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.002ms returns 2000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.002ms returns 1050282167 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:08:03] [debug] [ nRF52] - read_device_family +[2023-Jun-02 16:08:03] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 348 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:08:03] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.134ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.368ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.276ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.003ms returns FALSE +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:08:03] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.445ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 16:08:03] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:08:03] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:08:03] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 16:08:03] [trace] [ JLink] - InitTarget() end - Took 1.75ms +[2023-Jun-02 16:08:03] [trace] [ JLink] - InitTarget() end - Took 1.75ms +[2023-Jun-02 16:08:03] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:08:03] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:08:03] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:08:03] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:08:03] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:08:03] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:08:03] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:08:03] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:08:03] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:08:03] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:08:03] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:08:03] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:08:03] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:08:03] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:08:03] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:08:03] [trace] [ Client] - Command read_device_info executed for 18 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:08:03] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:08:03] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:08:03] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:08:03] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:08:03] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:08:03] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:08:03] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:08:03] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:08:03] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 14.035ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.006ms returns 0xE0000FF +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.010ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.349ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.061ms +[2023-Jun-02 16:08:03] [trace] [ Worker] - Command read_device_info executed for 18 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.010ms returns 0x01 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:03] [trace] [ Client] - Command read_memory_descriptors executed for 6 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:03] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.254ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ Client] - Command read_memory_descriptors executed for 6 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.294ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.006ms returns TRUE +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.398ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:08:03] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.103ms +[2023-Jun-02 16:08:03] [trace] [ Worker] - Command read_memory_descriptors executed for 6 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:08:03] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:08:03] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:08:03] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:03] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.252ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:03] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:08:03] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.268ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.277ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.006ms returns TRUE +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.135ms +[2023-Jun-02 16:08:03] [trace] [ Worker] - Command read_memory_descriptors executed for 6 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.009ms returns 0x01 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.011ms +[2023-Jun-02 16:08:03] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.009ms returns 0x01 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.010ms +[2023-Jun-02 16:08:03] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.008ms returns 0x01 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.011ms +[2023-Jun-02 16:08:03] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.009ms returns 0x01 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 16:08:03] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.009ms returns 0x01 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.011ms +[2023-Jun-02 16:08:03] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.008ms returns 0x01 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.010ms +[2023-Jun-02 16:08:03] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.009ms returns 0x01 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.010ms +[2023-Jun-02 16:08:03] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.009ms returns 0x01 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.010ms +[2023-Jun-02 16:08:03] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.008ms returns 0x01 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.010ms +[2023-Jun-02 16:08:03] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.010ms returns 0x01 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.009ms +[2023-Jun-02 16:08:03] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.007ms +[2023-Jun-02 16:08:03] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.008ms returns 0x01 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.009ms +[2023-Jun-02 16:08:03] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ Client] - erase +[2023-Jun-02 16:08:03] [debug] [ nRF52] - erase_file +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - erase +[2023-Jun-02 16:08:03] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:08:03] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.287ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.289ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:08:03] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:08:03] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:08:03] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:08:03] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:08:03] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:08:03] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:08:03] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.013ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 3.303ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 1.531ms returns 0 (0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":12,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.303ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.292ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.294ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.008ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:08:03] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:08:03] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:08:03] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 63.721ms +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:03] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Erasing +[2023-Jun-02 16:08:03] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:08:03] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Erasing flash range [0x00000000-0x00004D68] +[2023-Jun-02 16:08:03] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:08:03] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.357ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.554ms returns 0 (0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.305ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.343ms returns 0 (0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.351ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:08:03] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.265ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.252ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.309ms returns 0 (0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.343ms returns 0 (0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.013ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.419ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.398ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.015ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.433ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.384ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.296ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.289ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.446ms returns 0 (0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:08:03] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.252ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.311ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.365ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.350ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.362ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.015ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.373ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.351ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.271ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.339ms returns 0 (0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.351ms returns 0 (0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.436ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.470ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.389ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.295ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.326ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.427ms returns 0 (0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.385ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:08:03] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.397ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.352ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.365ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.260ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.364ms returns 0 (0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.407ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.446ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.367ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.319ms returns 0 (0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.383ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:08:03] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.252ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.364ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.271ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.300ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.312ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.351ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.376ms returns 0 (0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.375ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.326ms returns 0 (0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.456ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.021ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.592ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.020ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.527ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ Client] - Command erase_file executed for 667 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.021ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.546ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.356ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.334ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.466ms returns 0 (0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.015ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.530ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.015ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.503ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:08:03] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":575,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.081ms +[2023-Jun-02 16:08:03] [trace] [ Worker] - Command erase_file executed for 667 milliseconds with result 0 +[2023-Jun-02 16:08:03] [debug] [ Client] - program +[2023-Jun-02 16:08:03] [debug] [ nRF52] - program +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.025ms returns 0x01 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 16:08:03] [debug] [ nRF52] - program_file +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Check program file +[2023-Jun-02 16:08:03] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:08:03] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.367ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.277ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.299ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.010ms returns TRUE +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.017ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.382ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.013ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.372ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.013ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.438ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.013ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:08:03] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:08:03] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:08:03] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:08:03] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:08:03] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:08:03] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":723,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:08:03] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.289ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.300ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:08:03] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:08:03] [ info] [ nRF52] - Program flash. +[2023-Jun-02 16:08:03] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:08:03] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_write +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - write +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:03] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:08:03] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:03] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 16:08:03] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 16:08:03] [trace] [ JLink] - CPU_WriteMem(19816 bytes @ 0x00000000) +[2023-Jun-02 16:08:04] [trace] [ Client] - Command program_file executed for 152 milliseconds with result 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 129.577ms returns 0x4D68 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.410ms returns 1 (0x1) +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.339ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:08:04] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.431ms returns 0 (0x00000000) +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:08:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.400ms returns 1 (0x1) +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:08:04] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":132,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.031ms +[2023-Jun-02 16:08:04] [trace] [ Worker] - Command program_file executed for 152 milliseconds with result 0 +[2023-Jun-02 16:08:04] [debug] [ Client] - verify +[2023-Jun-02 16:08:04] [debug] [ nRF52] - verify +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.007ms returns 0x01 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:08:04] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 16:08:04] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 16:08:04] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:08:04] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:08:04] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.296ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:08:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:08:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:08:04] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:08:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:08:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:08:04] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:08:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:08:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:08:04] [ info] [ nRF52] - Verify +[2023-Jun-02 16:08:04] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:08:04] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:08:04] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:08:04] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:08:04] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:08:04] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":923,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:08:04] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:08:04] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:08:04] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 16:08:04] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:08:04] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Just_read +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 16:08:04] [trace] [ JLink] - CPU_ReadMem(19840 bytes @ 0x00000000) +[2023-Jun-02 16:08:04] [trace] [ Client] - Command verify_file executed for 143 milliseconds with result 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - -- Updating C cache (19840 bytes @ 0x00000000) +[2023-Jun-02 16:08:04] [trace] [ JLink] - -- Read from C cache (19816 bytes @ 0x00000000) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 132.875ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:08:04] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":132,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.075ms +[2023-Jun-02 16:08:04] [trace] [ Worker] - Command verify_file executed for 143 milliseconds with result 0 +[2023-Jun-02 16:08:04] [debug] [ Client] - sys_reset +[2023-Jun-02 16:08:04] [debug] [ nRF52] - sys_reset +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.009ms returns 0x01 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.297ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.272ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.004ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:08:04] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:08:04] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:08:04] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:08:04] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:08:04] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:08:04] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:08:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:08:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:08:04] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:08:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:08:04] [trace] [ Client] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 16:08:04] [debug] [ Client] - go +[2023-Jun-02 16:08:04] [trace] [ Client] - Command go executed for 4 milliseconds with result 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:08:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:08:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 63.622ms +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.004ms +[2023-Jun-02 16:08:04] [trace] [ Worker] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 16:08:04] [debug] [ nRF52] - go +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Just_go +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:08:04] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.285ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.273ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.287ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.274ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - go +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.003ms returns TRUE +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.004ms returns TRUE +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 16:08:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:08:04] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 1.096ms +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:08:04] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 16:08:04] [debug] [ nRF52] - close +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - close +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.003ms returns TRUE +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.263ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_WriteU32_64(0xE000EDFC, 0x00000000) +[2023-Jun-02 16:08:04] [trace] [ JLink] - Debug reg: DEMCR +[2023-Jun-02 16:08:04] [trace] [ JLink] - CPU is running +[2023-Jun-02 16:08:04] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.348ms returns 0 (0x00000000) +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - Shortcut, lock is on and debug region is powered. +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - unpower_debug_and_system_regions +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:08:04] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x01, 0x00000000) +[2023-Jun-02 16:08:04] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:08:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:56] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:10:56] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 16:10:56] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 16:10:56] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:10:56] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 16:10:56] [ info] Library loaded, loading member functions. +[2023-Jun-02 16:10:56] [ info] Member functions succesfully loaded. +[2023-Jun-02 16:10:56] [debug] [ Client] - open +[2023-Jun-02 16:10:56] [debug] [ Client] - start +[2023-Jun-02 16:10:56] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence f61edb93-78c4-426c-855e-91f15832e93d. +[2023-Jun-02 16:10:56] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 16:10:56] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 16:10:56] [debug] [ nRF52] - open +[2023-Jun-02 16:10:56] [debug] [ nRF52] - just_check_family +[2023-Jun-02 16:10:56] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 16:10:56] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 16:10:56] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 16:10:56] [trace] [ Client] - Command open executed for 2 milliseconds with result 0 +[2023-Jun-02 16:10:56] [debug] [ Client] - config +[2023-Jun-02 16:10:56] [trace] [ Client] - Command config executed for 1 milliseconds with result 0 +[2023-Jun-02 16:10:56] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 16:10:56] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 16:10:56] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 16:10:56] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 16:10:56] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 16:10:56] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 16:10:56] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:10:56] [debug] [ nRF52] - config +[2023-Jun-02 16:10:56] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 16:10:56] [trace] [ Worker] - Command config executed for 1 milliseconds with result 0 +[2023-Jun-02 16:10:56] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 16:10:56] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:10:56] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 16:10:56] [trace] [ Client] - Command enum_emu_con_info executed for 105 milliseconds with result 0 +[2023-Jun-02 16:10:56] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 16:10:56] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:10:56] [trace] [ Worker] - Command enum_emu_con_info executed for 105 milliseconds with result 0 +[2023-Jun-02 16:10:56] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 16:10:56] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:10:56] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 16:10:56] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:10:56] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 16:10:56] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 16:10:57] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:10:57] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:10:57] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 16:10:57] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 16:10:57] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 16:10:57] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 16:10:57] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 16:10:57] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 16:10:57] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 16:10:57] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:10:57] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:10:57] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 16:10:57] [trace] [ Client] - Command connect_to_emu_with_snr executed for 355 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 16:10:57] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ Client] - read_device_info +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 28.020ms returns "O.K." +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.419ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 16:10:57] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.050ms +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:10:57] [debug] [ nRF52] - read_device_family +[2023-Jun-02 16:10:57] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 355 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:10:57] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.131ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.346ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:10:57] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.244ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 16:10:57] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:10:57] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:10:57] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 16:10:57] [trace] [ JLink] - InitTarget() end - Took 1.65ms +[2023-Jun-02 16:10:57] [trace] [ JLink] - InitTarget() end - Took 1.65ms +[2023-Jun-02 16:10:57] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:10:57] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:10:57] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:10:57] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:10:57] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:10:57] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:10:57] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:10:57] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:10:57] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:10:57] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:10:57] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:10:57] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:10:57] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:10:57] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:10:57] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:10:57] [trace] [ Client] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:10:57] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:10:57] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:10:57] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:10:57] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:10:57] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:10:57] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:10:57] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:10:57] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:10:57] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:10:57] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 12.861ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0xE0000FF +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 16:10:57] [trace] [ Worker] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:57] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:10:57] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:10:57] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:10:57] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:10:57] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:10:57] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:10:57] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:10:57] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:10:57] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:10:57] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:10:57] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:10:57] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:10:57] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:10:57] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.023ms +[2023-Jun-02 16:10:57] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:57] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.267ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.373ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.020ms +[2023-Jun-02 16:10:57] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:10:57] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:10:57] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:10:57] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:10:57] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:10:57] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:10:57] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:10:57] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:10:57] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:10:57] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:10:57] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:10:57] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:10:57] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:10:57] [debug] [ Client] - erase +[2023-Jun-02 16:10:57] [debug] [ nRF52] - erase_file +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.009ms returns 0x01 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - erase +[2023-Jun-02 16:10:57] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:10:57] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.263ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:10:57] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:10:57] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:10:57] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:10:57] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:10:57] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:10:57] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:10:57] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:10:57] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.291ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 3.285ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 1.131ms returns 0 (0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.381ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":11,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:10:57] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.292ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.008ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:10:57] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:10:57] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:10:57] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 64.669ms +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.268ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:57] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:10:57] [ info] [ nRF52] - Erasing +[2023-Jun-02 16:10:57] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:10:57] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:10:57] [ info] [ nRF52] - Erasing flash range [0x00000000-0x00004D68] +[2023-Jun-02 16:10:57] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:10:57] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.302ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.405ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.306ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.009ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.318ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 1.612ms returns 0 (0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.009ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.334ms returns 0 (0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.381ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.355ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.423ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.393ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.348ms returns 0 (0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.377ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:10:57] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.383ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.390ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.378ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.427ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.445ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.012ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.252ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.287ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.363ms returns 0 (0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.316ms returns 0 (0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.266ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.386ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.393ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.264ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.413ms returns 0 (0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:10:57] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.287ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.407ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.291ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.352ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.009ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.373ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.351ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.322ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.308ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.345ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.268ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.343ms returns 0 (0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.289ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.351ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.012ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.373ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.012ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.467ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.290ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.433ms returns 0 (0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.362ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:10:57] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.280ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.350ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.401ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.348ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.341ms returns 0 (0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.341ms returns 0 (0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.361ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.401ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.408ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.260ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.348ms returns 0 (0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:10:57] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.261ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.379ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.286ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.359ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.355ms returns 0 (0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.358ms returns 0 (0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.354ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.447ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.009ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.365ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.010ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.359ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.350ms returns 1 (0x1) +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:57] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:10:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:10:57] [trace] [ Client] - Command erase_file executed for 669 milliseconds with result 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.353ms returns 0 (0x00000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.361ms returns 1 (0x1) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:10:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":578,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.024ms +[2023-Jun-02 16:10:58] [trace] [ Worker] - Command erase_file executed for 669 milliseconds with result 0 +[2023-Jun-02 16:10:58] [debug] [ Client] - program +[2023-Jun-02 16:10:58] [debug] [ nRF52] - program +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:10:58] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 16:10:58] [debug] [ nRF52] - program_file +[2023-Jun-02 16:10:58] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 16:10:58] [ info] [ nRF52] - Check program file +[2023-Jun-02 16:10:58] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:10:58] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.348ms returns 1 (0x1) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:10:58] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:10:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:10:58] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:10:58] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:10:58] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:10:58] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:10:58] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":719,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:10:58] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.303ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:10:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:10:58] [ info] [ nRF52] - Program flash. +[2023-Jun-02 16:10:58] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:10:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_write +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - write +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.317ms returns 0 (0x00000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_WriteMem(19816 bytes @ 0x00000000) +[2023-Jun-02 16:10:58] [trace] [ Client] - Command program_file executed for 145 milliseconds with result 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 129.471ms returns 0x4D68 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.009ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.503ms returns 1 (0x1) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.310ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.277ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.390ms returns 0 (0x00000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:10:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":132,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.017ms +[2023-Jun-02 16:10:58] [trace] [ Worker] - Command program_file executed for 145 milliseconds with result 0 +[2023-Jun-02 16:10:58] [debug] [ Client] - verify +[2023-Jun-02 16:10:58] [debug] [ nRF52] - verify +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.004ms returns 0x01 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:10:58] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 16:10:58] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 16:10:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:10:58] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:10:58] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.264ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.277ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.261ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:10:58] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:10:58] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:10:58] [ info] [ nRF52] - Verify +[2023-Jun-02 16:10:58] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:10:58] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:10:58] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:10:58] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:10:58] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:10:58] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":918,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:10:58] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:10:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:10:58] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 16:10:58] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:10:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_read +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x4D68 Bytes, ...) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(19840 bytes @ 0x00000000) +[2023-Jun-02 16:10:58] [trace] [ Client] - Command verify_file executed for 143 milliseconds with result 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - -- Updating C cache (19840 bytes @ 0x00000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - -- Read from C cache (19816 bytes @ 0x00000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Data: 80 15 00 20 8D 15 00 00 D7 40 00 00 61 15 00 00 ... +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 133.003ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:10:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":133,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.078ms +[2023-Jun-02 16:10:58] [trace] [ Worker] - Command verify_file executed for 143 milliseconds with result 0 +[2023-Jun-02 16:10:58] [debug] [ Client] - sys_reset +[2023-Jun-02 16:10:58] [debug] [ nRF52] - sys_reset +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.019ms returns 0x01 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:10:58] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:10:58] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:10:58] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:10:58] [trace] [ Client] - Command sys_reset executed for 67 milliseconds with result 0 +[2023-Jun-02 16:10:58] [debug] [ Client] - go +[2023-Jun-02 16:10:58] [trace] [ Client] - Command go executed for 4 milliseconds with result 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 64.644ms +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.011ms +[2023-Jun-02 16:10:58] [trace] [ Worker] - Command sys_reset executed for 67 milliseconds with result 0 +[2023-Jun-02 16:10:58] [debug] [ nRF52] - go +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_go +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:10:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.376ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.308ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.309ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.328ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - go +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.005ms returns TRUE +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.008ms returns TRUE +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 1.131ms +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.007ms +[2023-Jun-02 16:10:58] [trace] [ Worker] - Command go executed for 4 milliseconds with result 0 +[2023-Jun-02 16:10:58] [debug] [ nRF52] - close +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - close +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.006ms returns TRUE +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_WriteU32_64(0xE000EDFC, 0x00000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Debug reg: DEMCR +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU is running +[2023-Jun-02 16:10:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.397ms returns 0 (0x00000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - Shortcut, lock is on and debug region is powered. +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - unpower_debug_and_system_regions +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x01, 0x00000000) +[2023-Jun-02 16:10:58] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:10:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:10:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:10:58] [trace] [ JLink] - Value=0x00000040 +[2023-Jun-02 16:42:05] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:42:05] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 16:42:05] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 16:42:05] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:42:05] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 16:42:05] [ info] Library loaded, loading member functions. +[2023-Jun-02 16:42:05] [ info] Member functions succesfully loaded. +[2023-Jun-02 16:42:05] [debug] [ Client] - open +[2023-Jun-02 16:42:05] [debug] [ Client] - start +[2023-Jun-02 16:42:05] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence e3354998-acd0-42fb-b20a-53cce7e1af13. +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 16:42:05] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 16:42:05] [debug] [ nRF52] - open +[2023-Jun-02 16:42:05] [debug] [ nRF52] - just_check_family +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 16:42:05] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:42:05] [debug] [ Client] - config +[2023-Jun-02 16:42:05] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:05] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 16:42:05] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 16:42:05] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 16:42:05] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 16:42:05] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 16:42:05] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:42:05] [debug] [ nRF52] - config +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 16:42:05] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:05] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 16:42:05] [trace] [ Client] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 16:42:05] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:42:05] [trace] [ Worker] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 16:42:05] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 16:42:05] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:42:05] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:42:05] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 16:42:05] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 16:42:05] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 16:42:05] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 16:42:05] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 16:42:05] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 16:42:05] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 16:42:05] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 16:42:05] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:42:05] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:42:05] [trace] [ Client] - Command connect_to_emu_with_snr executed for 344 milliseconds with result 0 +[2023-Jun-02 16:42:05] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 16:42:05] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:05] [debug] [ Client] - read_device_info +[2023-Jun-02 16:42:05] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 27.173ms returns "O.K." +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.000ms returns 0x00 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.003ms returns 0 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.376ms returns 0x00 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 16:42:05] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.051ms +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:42:05] [debug] [ nRF52] - read_device_family +[2023-Jun-02 16:42:05] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 344 milliseconds with result 0 +[2023-Jun-02 16:42:05] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:42:05] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:05] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:42:05] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:42:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.135ms returns 0 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.353ms returns 0 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 16:42:05] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:42:05] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 16:42:05] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:42:05] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:42:05] [trace] [ JLink] - - 0.309ms returns 0x00 +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:05] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 16:42:06] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:42:06] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:42:06] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 16:42:06] [trace] [ JLink] - InitTarget() end - Took 1.66ms +[2023-Jun-02 16:42:06] [trace] [ JLink] - InitTarget() end - Took 1.66ms +[2023-Jun-02 16:42:06] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:42:06] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:42:06] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:42:06] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:42:06] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:42:06] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:42:06] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:42:06] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:42:06] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:42:06] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:42:06] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:42:06] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:42:06] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:42:06] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:42:06] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:42:06] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:42:06] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:42:06] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 16:42:06] [trace] [ Client] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:42:06] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:42:06] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:42:06] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:42:06] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:42:06] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:42:06] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:42:06] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:42:06] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 13.225ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0xE0000FF +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.017ms +[2023-Jun-02 16:42:06] [trace] [ Worker] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.333ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.318ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.269ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.003ms returns TRUE +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.014ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.060ms +[2023-Jun-02 16:42:06] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:42:06] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:42:06] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:42:06] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:42:06] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:42:06] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:42:06] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:42:06] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:42:06] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:42:06] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:42:06] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:42:06] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:42:06] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.278ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.359ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.022ms +[2023-Jun-02 16:42:06] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:42:06] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:42:06] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:42:06] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:42:06] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:42:06] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:42:06] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:42:06] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:42:06] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:42:06] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:42:06] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:42:06] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:42:06] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ Client] - erase +[2023-Jun-02 16:42:06] [debug] [ nRF52] - erase_file +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - erase +[2023-Jun-02 16:42:06] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:42:06] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:42:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:42:06] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:42:06] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:42:06] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:42:06] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:42:06] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:42:06] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.310ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.306ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.364ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 3.251ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.639ms returns 0 (0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:42:06] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:42:06] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:42:06] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 64.091ms +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Erasing +[2023-Jun-02 16:42:06] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:42:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Erasing flash range [0x00000000-0x0000676A] +[2023-Jun-02 16:42:06] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:42:06] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.287ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.601ms returns 0 (0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.310ms returns 0 (0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.358ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.350ms returns 0 (0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:42:06] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.286ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.359ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.330ms returns 0 (0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.300ms returns 0 (0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.387ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.269ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.325ms returns 0 (0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:42:06] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.357ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.365ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.379ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.326ms returns 0 (0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.307ms returns 0 (0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.369ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.376ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.375ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.357ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.360ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.277ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.330ms returns 0 (0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.356ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:42:06] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.328ms returns 0 (0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.300ms returns 0 (0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.348ms returns 0 (0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:42:06] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.379ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.382ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.379ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.265ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.317ms returns 0 (0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.304ms returns 0 (0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.289ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.373ms returns 0 (0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:42:06] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.285ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.314ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.341ms returns 0 (0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00005000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.305ms returns 0 (0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.435ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.400ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.324ms returns 0 (0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:42:06] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.311ms returns 0 (0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00006000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.266ms returns 0 (0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.305ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ Client] - Command erase_file executed for 881 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.325ms returns 0 (0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.291ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:42:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":791,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.016ms +[2023-Jun-02 16:42:06] [trace] [ Worker] - Command erase_file executed for 881 milliseconds with result 0 +[2023-Jun-02 16:42:06] [debug] [ Client] - program +[2023-Jun-02 16:42:06] [debug] [ nRF52] - program +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.004ms returns 0x01 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 16:42:06] [debug] [ nRF52] - program_file +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Check program file +[2023-Jun-02 16:42:06] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:42:06] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.374ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:42:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:42:06] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:42:06] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:42:06] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:42:06] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:42:06] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":931,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:42:06] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.365ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.390ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:42:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:42:06] [ info] [ nRF52] - Program flash. +[2023-Jun-02 16:42:06] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:42:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_write +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - write +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMem(0x0000676A, 0x2 Bytes, ...) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0x00006740) +[2023-Jun-02 16:42:06] [trace] [ JLink] - -- Updating C cache (64 bytes @ 0x00006740) +[2023-Jun-02 16:42:06] [trace] [ JLink] - -- Read from C cache (2 bytes @ 0x0000676A) +[2023-Jun-02 16:42:06] [trace] [ JLink] - Data: FF FF +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.759ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.325ms returns 0 (0x00000000) +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x676C Bytes, ...) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Data: 40 17 00 20 9D 15 00 00 81 51 00 00 71 15 00 00 ... +[2023-Jun-02 16:42:07] [trace] [ JLink] - CPU_WriteMem(26476 bytes @ 0x00000000) +[2023-Jun-02 16:42:07] [trace] [ Client] - Command program_file executed for 189 milliseconds with result 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 172.740ms returns 0x676C +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.374ms returns 1 (0x1) +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:42:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.307ms returns 0 (0x00000000) +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:42:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:42:07] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":175,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.016ms +[2023-Jun-02 16:42:07] [trace] [ Worker] - Command program_file executed for 189 milliseconds with result 0 +[2023-Jun-02 16:42:07] [debug] [ Client] - verify +[2023-Jun-02 16:42:07] [debug] [ nRF52] - verify +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.004ms returns 0x01 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:42:07] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 16:42:07] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 16:42:07] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:42:07] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:42:07] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:42:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:42:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:42:07] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:42:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:42:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:42:07] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:42:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:42:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:42:07] [ info] [ nRF52] - Verify +[2023-Jun-02 16:42:07] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:42:07] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:42:07] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:42:07] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:42:07] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:42:07] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":1173,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:42:07] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:42:07] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:42:07] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 16:42:07] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:42:07] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Just_read +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.315ms returns 0x00 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x676A Bytes, ...) +[2023-Jun-02 16:42:07] [trace] [ JLink] - CPU_ReadMem(26496 bytes @ 0x00000000) +[2023-Jun-02 16:42:07] [trace] [ Client] - Command verify_file executed for 187 milliseconds with result 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - -- Updating C cache (26496 bytes @ 0x00000000) +[2023-Jun-02 16:42:07] [trace] [ JLink] - -- Read from C cache (26474 bytes @ 0x00000000) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Data: 40 17 00 20 9D 15 00 00 81 51 00 00 71 15 00 00 ... +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 177.387ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:42:07] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":177,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.026ms +[2023-Jun-02 16:42:07] [trace] [ Worker] - Command verify_file executed for 187 milliseconds with result 0 +[2023-Jun-02 16:42:07] [debug] [ Client] - sys_reset +[2023-Jun-02 16:42:07] [debug] [ nRF52] - sys_reset +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.004ms returns 0x01 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:42:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:42:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:42:07] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:42:07] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:42:07] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:42:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:42:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:42:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:42:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:42:07] [trace] [ Client] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 16:42:07] [debug] [ Client] - go +[2023-Jun-02 16:42:07] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:42:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:42:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:42:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 64.382ms +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:42:07] [trace] [ Worker] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 16:42:07] [debug] [ nRF52] - go +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Just_go +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:42:07] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.290ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:42:07] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - go +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.003ms returns TRUE +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 16:42:07] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:42:07] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 1.056ms +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:42:07] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 16:42:07] [debug] [ nRF52] - close +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - close +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:42:07] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:42:07] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:42:07] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:45:29] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:45:29] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 16:45:29] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 16:45:29] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:45:29] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 16:45:29] [ info] Library loaded, loading member functions. +[2023-Jun-02 16:45:29] [ info] Member functions succesfully loaded. +[2023-Jun-02 16:45:29] [debug] [ Client] - open +[2023-Jun-02 16:45:29] [debug] [ Client] - start +[2023-Jun-02 16:45:29] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence 8143ead8-624f-467d-8959-9c8ea1375df9. +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 16:45:29] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 16:45:29] [debug] [ nRF52] - open +[2023-Jun-02 16:45:29] [debug] [ nRF52] - just_check_family +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 16:45:29] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ Client] - config +[2023-Jun-02 16:45:29] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 16:45:29] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 16:45:29] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 16:45:29] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 16:45:29] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 16:45:29] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - config +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 16:45:29] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 16:45:29] [trace] [ Client] - Command enum_emu_con_info executed for 105 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:45:29] [trace] [ Worker] - Command enum_emu_con_info executed for 105 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 16:45:29] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:45:29] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:45:29] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 16:45:29] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 16:45:29] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 16:45:29] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 16:45:29] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 16:45:29] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 16:45:29] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 16:45:29] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:45:29] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:45:29] [trace] [ Client] - Command connect_to_emu_with_snr executed for 352 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 16:45:29] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ Client] - read_device_info +[2023-Jun-02 16:45:29] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 26.301ms returns "O.K." +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.000ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.003ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.406ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 16:45:29] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.041ms +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:45:29] [debug] [ nRF52] - read_device_family +[2023-Jun-02 16:45:29] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 352 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:45:29] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.108ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.388ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.002ms returns FALSE +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:45:29] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.298ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 16:45:29] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:45:29] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:45:29] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 16:45:29] [trace] [ JLink] - InitTarget() end - Took 1.72ms +[2023-Jun-02 16:45:29] [trace] [ JLink] - InitTarget() end - Took 1.72ms +[2023-Jun-02 16:45:29] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:45:29] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:45:29] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:45:29] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:45:29] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:45:29] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:45:29] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:45:29] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:45:29] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:45:29] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:45:29] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:45:29] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:45:29] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:45:29] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:45:29] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:45:29] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:45:29] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:45:29] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 16:45:29] [trace] [ Client] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:45:29] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 16:45:29] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:45:29] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 16:45:29] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:45:29] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 16:45:29] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:45:29] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 16:45:29] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:45:29] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 16:45:29] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:45:29] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 16:45:29] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:45:29] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 13.145ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.002ms returns 0xE0000FF +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 16:45:29] [trace] [ Worker] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:29] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.285ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.003ms returns TRUE +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.038ms +[2023-Jun-02 16:45:29] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.277ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:45:29] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:45:29] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:45:29] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:45:29] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:45:29] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:45:29] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:45:29] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:45:29] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:45:29] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:45:29] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:45:29] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:45:29] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.276ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:29] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.385ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.016ms +[2023-Jun-02 16:45:29] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:45:29] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:45:29] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:45:29] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:45:29] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:45:29] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:45:29] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:45:29] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:45:29] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:45:29] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:45:29] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:45:29] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:45:29] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:45:29] [debug] [ Client] - erase +[2023-Jun-02 16:45:29] [debug] [ nRF52] - erase_file +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - erase +[2023-Jun-02 16:45:29] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:45:29] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.263ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.277ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.352ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:45:29] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:45:29] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:45:29] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:45:29] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:45:29] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:45:29] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:45:29] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:45:29] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.291ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.377ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 3.266ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.354ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.683ms returns 0 (0x00000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":11,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:45:29] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.285ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 1.286ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.292ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.277ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.003ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:45:29] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:45:29] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:45:29] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 63.959ms +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:29] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:45:29] [ info] [ nRF52] - Erasing +[2023-Jun-02 16:45:29] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:45:29] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:45:29] [ info] [ nRF52] - Erasing flash range [0x00000000-0x0000676A] +[2023-Jun-02 16:45:29] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:45:29] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.357ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.373ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.286ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.691ms returns 0 (0x00000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.305ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.325ms returns 0 (0x00000000) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:29] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:29] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:29] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:29] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:45:29] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.306ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.292ms returns 0 (0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.306ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:45:30] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.360ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.289ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.260ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.318ms returns 0 (0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.290ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.140ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.300ms returns 0 (0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.368ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.352ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.326ms returns 0 (0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:45:30] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.300ms returns 0 (0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.153ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.320ms returns 0 (0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.287ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.313ms returns 0 (0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:45:30] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.353ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.330ms returns 0 (0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.328ms returns 0 (0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.401ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.297ms returns 0 (0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.305ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:45:30] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.305ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.287ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.298ms returns 0 (0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.357ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.328ms returns 0 (0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.359ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.358ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.348ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.284ms returns 0 (0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.385ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:45:30] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.291ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.287ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.290ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.326ms returns 0 (0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00005000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.276ms returns 0 (0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.355ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.385ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.323ms returns 0 (0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:45:30] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.274ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.290ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.350ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.286ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.287ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.327ms returns 0 (0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00006000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.313ms returns 0 (0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ Client] - Command erase_file executed for 884 milliseconds with result 0 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.378ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.279ms returns 0 (0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:45:30] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":792,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 16:45:30] [trace] [ Worker] - Command erase_file executed for 884 milliseconds with result 0 +[2023-Jun-02 16:45:30] [debug] [ Client] - program +[2023-Jun-02 16:45:30] [debug] [ nRF52] - program +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:45:30] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 16:45:30] [debug] [ nRF52] - program_file +[2023-Jun-02 16:45:30] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 16:45:30] [ info] [ nRF52] - Check program file +[2023-Jun-02 16:45:30] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:45:30] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:45:30] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.253ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:45:30] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:45:30] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:45:30] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:45:30] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:45:30] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:45:30] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":934,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:45:30] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.367ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.397ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:45:30] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:45:30] [ info] [ nRF52] - Program flash. +[2023-Jun-02 16:45:30] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:45:30] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_write +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - write +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMem(0x0000676A, 0x2 Bytes, ...) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0x00006740) +[2023-Jun-02 16:45:30] [trace] [ JLink] - -- Updating C cache (64 bytes @ 0x00006740) +[2023-Jun-02 16:45:30] [trace] [ JLink] - -- Read from C cache (2 bytes @ 0x0000676A) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: FF FF +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.790ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.322ms returns 0 (0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x676C Bytes, ...) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 40 17 00 20 9D 15 00 00 81 51 00 00 71 15 00 00 ... +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_WriteMem(26476 bytes @ 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ Client] - Command program_file executed for 189 milliseconds with result 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 172.724ms returns 0x676C +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.306ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.377ms returns 0 (0x00000000) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:30] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:45:30] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:45:30] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 16:45:30] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:30] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:45:30] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":175,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:45:30] [trace] [ JLink] - - 0.017ms +[2023-Jun-02 16:45:30] [trace] [ Worker] - Command program_file executed for 189 milliseconds with result 0 +[2023-Jun-02 16:45:31] [debug] [ Client] - verify +[2023-Jun-02 16:45:31] [debug] [ nRF52] - verify +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.007ms returns 0x01 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:45:31] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 16:45:31] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 16:45:31] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 16:45:31] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:45:31] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:45:31] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:45:31] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:45:31] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:31] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:45:31] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:45:31] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.288ms returns 1 (0x1) +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:45:31] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:45:31] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:45:31] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:45:31] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:31] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.273ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.262ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:45:31] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.351ms returns 1 (0x1) +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:45:31] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:45:31] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:45:31] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:45:31] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:45:31] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:45:31] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:31] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.284ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:45:31] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:45:31] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:45:31] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:45:31] [ info] [ nRF52] - Verify +[2023-Jun-02 16:45:31] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:45:31] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:45:31] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:45:31] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:45:31] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:45:31] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:45:31] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":1176,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:45:31] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:45:31] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:45:31] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 16:45:31] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:45:31] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:45:31] [debug] [ nRF52] - Just_read +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.302ms returns 0x00 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x676A Bytes, ...) +[2023-Jun-02 16:45:31] [trace] [ JLink] - CPU_ReadMem(26496 bytes @ 0x00000000) +[2023-Jun-02 16:45:31] [trace] [ Client] - Command verify_file executed for 188 milliseconds with result 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - -- Updating C cache (26496 bytes @ 0x00000000) +[2023-Jun-02 16:45:31] [trace] [ JLink] - -- Read from C cache (26474 bytes @ 0x00000000) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Data: 40 17 00 20 9D 15 00 00 81 51 00 00 71 15 00 00 ... +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 177.457ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:45:31] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":177,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.027ms +[2023-Jun-02 16:45:31] [trace] [ Worker] - Command verify_file executed for 188 milliseconds with result 0 +[2023-Jun-02 16:45:31] [debug] [ Client] - sys_reset +[2023-Jun-02 16:45:31] [debug] [ nRF52] - sys_reset +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.007ms returns 0x01 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:45:31] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 16:45:31] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:31] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.295ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:45:31] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:45:31] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:45:31] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:45:31] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:45:31] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:45:31] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:45:31] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:45:31] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:45:31] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:45:31] [trace] [ Client] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 16:45:31] [debug] [ Client] - go +[2023-Jun-02 16:45:31] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:45:31] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:45:31] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:45:31] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 63.852ms +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:45:31] [trace] [ Worker] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 16:45:31] [debug] [ nRF52] - go +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:45:31] [debug] [ nRF52] - Just_go +[2023-Jun-02 16:45:31] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:45:31] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:45:31] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - go +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.003ms returns TRUE +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 16:45:31] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:45:31] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 1.055ms +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:45:31] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 16:45:31] [debug] [ nRF52] - close +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - close +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:45:31] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:45:31] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:45:31] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:15] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:46:15] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 16:46:15] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 16:46:15] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:46:15] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 16:46:15] [ info] Library loaded, loading member functions. +[2023-Jun-02 16:46:15] [ info] Member functions succesfully loaded. +[2023-Jun-02 16:46:15] [debug] [ Client] - open +[2023-Jun-02 16:46:15] [debug] [ Client] - start +[2023-Jun-02 16:46:15] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence b95833b8-c762-4e71-a4c8-1ff0a3980a37. +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 16:46:15] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 16:46:15] [debug] [ nRF52] - open +[2023-Jun-02 16:46:15] [debug] [ nRF52] - just_check_family +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 16:46:15] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ Client] - config +[2023-Jun-02 16:46:15] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 16:46:15] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 16:46:15] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 16:46:15] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 16:46:15] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 16:46:15] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - config +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 16:46:15] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 16:46:15] [trace] [ Client] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:46:15] [trace] [ Worker] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 16:46:15] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:46:15] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:46:15] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 16:46:15] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 16:46:15] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 16:46:15] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 16:46:15] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 16:46:15] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 16:46:15] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 16:46:15] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:46:15] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:46:15] [trace] [ Client] - Command connect_to_emu_with_snr executed for 344 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 16:46:15] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ Client] - read_device_info +[2023-Jun-02 16:46:15] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 27.036ms returns "O.K." +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.003ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.419ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 16:46:15] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.052ms +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.002ms returns 2000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:46:15] [debug] [ nRF52] - read_device_family +[2023-Jun-02 16:46:15] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 344 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:46:15] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.131ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.351ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:46:15] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.228ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 16:46:15] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:46:15] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:46:15] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 16:46:15] [trace] [ JLink] - InitTarget() end - Took 1.59ms +[2023-Jun-02 16:46:15] [trace] [ JLink] - InitTarget() end - Took 1.59ms +[2023-Jun-02 16:46:15] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:46:15] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:46:15] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:46:15] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:46:15] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:46:15] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:46:15] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:46:15] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:46:15] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:46:15] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:46:15] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:46:15] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:46:15] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:46:15] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:46:15] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:46:15] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:46:15] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:46:15] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 16:46:15] [trace] [ Client] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:46:15] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:46:15] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:46:15] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:46:15] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:46:15] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:46:15] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:46:15] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 12.692ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0xE0000FF +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 16:46:15] [trace] [ Worker] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.269ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:15] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.364ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.025ms +[2023-Jun-02 16:46:15] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:46:15] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:46:15] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:46:15] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:46:15] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:46:15] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:46:15] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:46:15] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:46:15] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:46:15] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:46:15] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:46:15] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:46:15] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:15] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 16:46:15] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:46:15] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:46:15] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:46:15] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.004ms +[2023-Jun-02 16:46:15] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:46:15] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:46:15] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:46:15] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:46:15] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:46:15] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:46:15] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:46:15] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:46:15] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:46:15] [debug] [ Client] - erase +[2023-Jun-02 16:46:15] [debug] [ nRF52] - erase_file +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - erase +[2023-Jun-02 16:46:15] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:46:15] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:46:15] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:46:15] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:46:15] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:46:15] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:46:15] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:46:15] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:46:15] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:46:15] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.361ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 3.238ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.624ms returns 0 (0x00000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:46:15] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:46:15] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:46:15] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:46:15] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 64.140ms +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.268ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:15] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:46:15] [ info] [ nRF52] - Erasing +[2023-Jun-02 16:46:15] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:46:15] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:46:15] [ info] [ nRF52] - Erasing flash range [0x00000000-0x0000676A] +[2023-Jun-02 16:46:15] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:46:15] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.357ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.362ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.624ms returns 0 (0x00000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.352ms returns 0 (0x00000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.262ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.267ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:46:15] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.361ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.321ms returns 0 (0x00000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.292ms returns 0 (0x00000000) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:15] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:15] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:15] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:15] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:46:15] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.324ms returns 0 (0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:46:16] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.291ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.328ms returns 0 (0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.334ms returns 0 (0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.331ms returns 0 (0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:46:16] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.362ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.271ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.292ms returns 0 (0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.288ms returns 0 (0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.330ms returns 0 (0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:46:16] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.268ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.388ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.289ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.314ms returns 0 (0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.353ms returns 0 (0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.350ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.312ms returns 0 (0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:46:16] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.388ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.284ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.320ms returns 0 (0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00005000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.299ms returns 0 (0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.265ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.367ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.292ms returns 0 (0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:46:16] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.287ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.300ms returns 0 (0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00006000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.289ms returns 0 (0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.377ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.331ms returns 0 (0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ Client] - Command erase_file executed for 879 milliseconds with result 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:46:16] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":790,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.016ms +[2023-Jun-02 16:46:16] [trace] [ Worker] - Command erase_file executed for 879 milliseconds with result 0 +[2023-Jun-02 16:46:16] [debug] [ Client] - program +[2023-Jun-02 16:46:16] [debug] [ nRF52] - program +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:46:16] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 16:46:16] [debug] [ nRF52] - program_file +[2023-Jun-02 16:46:16] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 16:46:16] [ info] [ nRF52] - Check program file +[2023-Jun-02 16:46:16] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:46:16] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:46:16] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:46:16] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:46:16] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:46:16] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:46:16] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:46:16] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:46:16] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":929,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:46:16] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.283ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.365ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.348ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:46:16] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:46:16] [ info] [ nRF52] - Program flash. +[2023-Jun-02 16:46:16] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:46:16] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_write +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - write +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMem(0x0000676A, 0x2 Bytes, ...) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0x00006740) +[2023-Jun-02 16:46:16] [trace] [ JLink] - -- Updating C cache (64 bytes @ 0x00006740) +[2023-Jun-02 16:46:16] [trace] [ JLink] - -- Read from C cache (2 bytes @ 0x0000676A) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: FF FF +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.781ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.305ms returns 0 (0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x676C Bytes, ...) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 40 17 00 20 9D 15 00 00 81 51 00 00 71 15 00 00 ... +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_WriteMem(26476 bytes @ 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ Client] - Command program_file executed for 189 milliseconds with result 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 172.661ms returns 0x676C +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.341ms returns 0 (0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:46:16] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":175,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.016ms +[2023-Jun-02 16:46:16] [trace] [ Worker] - Command program_file executed for 189 milliseconds with result 0 +[2023-Jun-02 16:46:16] [debug] [ Client] - verify +[2023-Jun-02 16:46:16] [debug] [ nRF52] - verify +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.008ms returns 0x01 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:46:16] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 16:46:16] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 16:46:16] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:46:16] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:46:16] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.384ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:46:16] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:46:16] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:46:16] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:46:16] [ info] [ nRF52] - Verify +[2023-Jun-02 16:46:16] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:46:16] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:46:16] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:46:16] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:46:16] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:46:16] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":1171,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:46:16] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:46:16] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:46:16] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 16:46:16] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:46:16] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:46:16] [debug] [ nRF52] - Just_read +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - read +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.306ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 16:46:16] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:46:16] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:16] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x676A Bytes, ...) +[2023-Jun-02 16:46:16] [trace] [ JLink] - CPU_ReadMem(26496 bytes @ 0x00000000) +[2023-Jun-02 16:46:17] [trace] [ Client] - Command verify_file executed for 187 milliseconds with result 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - -- Updating C cache (26496 bytes @ 0x00000000) +[2023-Jun-02 16:46:17] [trace] [ JLink] - -- Read from C cache (26474 bytes @ 0x00000000) +[2023-Jun-02 16:46:17] [trace] [ JLink] - Data: 40 17 00 20 9D 15 00 00 81 51 00 00 71 15 00 00 ... +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 177.235ms returns 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:46:17] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":177,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.027ms +[2023-Jun-02 16:46:17] [trace] [ Worker] - Command verify_file executed for 187 milliseconds with result 0 +[2023-Jun-02 16:46:17] [debug] [ Client] - sys_reset +[2023-Jun-02 16:46:17] [debug] [ nRF52] - sys_reset +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:46:17] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 16:46:17] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:17] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:46:17] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:46:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:46:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:46:17] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:46:17] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:46:17] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:46:17] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:46:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:46:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:46:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:46:17] [trace] [ Client] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 16:46:17] [debug] [ Client] - go +[2023-Jun-02 16:46:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:46:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:46:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:46:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:46:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 64.070ms +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:46:17] [trace] [ Worker] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 16:46:17] [debug] [ nRF52] - go +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:46:17] [debug] [ nRF52] - Just_go +[2023-Jun-02 16:46:17] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:46:17] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:46:17] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:46:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - go +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 16:46:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:46:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 1.061ms +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:46:17] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 16:46:17] [debug] [ nRF52] - close +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - close +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:46:17] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:46:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:46:17] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:11] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:49:11] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 16:49:11] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 16:49:11] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:49:11] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 16:49:11] [ info] Library loaded, loading member functions. +[2023-Jun-02 16:49:11] [ info] Member functions succesfully loaded. +[2023-Jun-02 16:49:11] [debug] [ Client] - open +[2023-Jun-02 16:49:11] [debug] [ Client] - start +[2023-Jun-02 16:49:11] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence b16b300e-a699-481d-9df9-f94ac1ff060b. +[2023-Jun-02 16:49:11] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 16:49:11] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 16:49:11] [debug] [ nRF52] - open +[2023-Jun-02 16:49:11] [debug] [ nRF52] - just_check_family +[2023-Jun-02 16:49:11] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 16:49:11] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 16:49:11] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:49:11] [debug] [ Client] - config +[2023-Jun-02 16:49:11] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:11] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 16:49:11] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 16:49:11] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 16:49:11] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 16:49:11] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 16:49:11] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 16:49:11] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 16:49:11] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:49:11] [debug] [ nRF52] - config +[2023-Jun-02 16:49:11] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 16:49:11] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:11] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 16:49:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:11] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 16:49:11] [trace] [ Client] - Command enum_emu_con_info executed for 105 milliseconds with result 0 +[2023-Jun-02 16:49:11] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 16:49:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:11] [trace] [ Worker] - Command enum_emu_con_info executed for 105 milliseconds with result 0 +[2023-Jun-02 16:49:11] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 16:49:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:11] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 16:49:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:11] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 16:49:11] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 16:49:12] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:49:12] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:49:12] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 16:49:12] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 16:49:12] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 16:49:12] [trace] [ Client] - Command connect_to_emu_with_snr executed for 344 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 16:49:12] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ Client] - read_device_info +[2023-Jun-02 16:49:12] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 16:49:12] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 16:49:12] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 16:49:12] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 16:49:12] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:49:12] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:49:12] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 27.858ms returns "O.K." +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.000ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.000ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.003ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.420ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 16:49:12] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.050ms +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns 2000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:49:12] [debug] [ nRF52] - read_device_family +[2023-Jun-02 16:49:12] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 344 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:49:12] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.132ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.369ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:49:12] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.312ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 16:49:12] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:49:12] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:49:12] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 16:49:12] [trace] [ JLink] - InitTarget() end - Took 1.67ms +[2023-Jun-02 16:49:12] [trace] [ JLink] - InitTarget() end - Took 1.67ms +[2023-Jun-02 16:49:12] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:49:12] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:49:12] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:49:12] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:49:12] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:49:12] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:49:12] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:49:12] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:49:12] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:49:12] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:49:12] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:49:12] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:49:12] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:49:12] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:49:12] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:49:12] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:49:12] [trace] [ Client] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:49:12] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:49:12] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:49:12] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:49:12] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:49:12] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:49:12] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:49:12] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:49:12] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 12.999ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns 0xE0000FF +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 16:49:12] [trace] [ Worker] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:12] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:49:12] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:49:12] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:49:12] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:49:12] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:49:12] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:49:12] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:49:12] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:49:12] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:49:12] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:49:12] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:49:12] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:49:12] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:49:12] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.356ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.021ms +[2023-Jun-02 16:49:12] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:12] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.012ms +[2023-Jun-02 16:49:12] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:49:12] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:49:12] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:49:12] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:49:12] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:49:12] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:49:12] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:49:12] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:49:12] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:49:12] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:49:12] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:49:12] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:49:12] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:12] [debug] [ Client] - erase +[2023-Jun-02 16:49:12] [debug] [ nRF52] - erase_file +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - erase +[2023-Jun-02 16:49:12] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:49:12] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:49:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:49:12] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:49:12] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:49:12] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:49:12] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:49:12] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:49:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 3.360ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.351ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.662ms returns 0 (0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:49:12] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:49:12] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:49:12] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 63.794ms +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Erasing +[2023-Jun-02 16:49:12] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:49:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Erasing flash range [0x00000000-0x0000676A] +[2023-Jun-02 16:49:12] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:49:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.291ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.351ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.287ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.643ms returns 0 (0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.283ms returns 0 (0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.326ms returns 0 (0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:49:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.267ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.377ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.314ms returns 0 (0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.330ms returns 0 (0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.291ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:49:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.362ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.278ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.338ms returns 0 (0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.353ms returns 0 (0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.367ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.319ms returns 0 (0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:49:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.288ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.375ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.267ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.372ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.310ms returns 0 (0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.330ms returns 0 (0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.289ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.328ms returns 0 (0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:49:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.011ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.447ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.309ms returns 0 (0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.274ms returns 0 (0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.149ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.369ms returns 0 (0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:49:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.281ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.356ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.388ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.298ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.268ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.318ms returns 0 (0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00005000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.316ms returns 0 (0x00000000) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:12] [trace] [ JLink] - - 0.286ms returns 1 (0x1) +[2023-Jun-02 16:49:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.348ms returns 0 (0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:49:13] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.260ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.380ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.356ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.381ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.307ms returns 0 (0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00006000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.326ms returns 0 (0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.290ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:13] [trace] [ Client] - Command erase_file executed for 879 milliseconds with result 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.303ms returns 0 (0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:49:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":790,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.032ms +[2023-Jun-02 16:49:13] [trace] [ Worker] - Command erase_file executed for 879 milliseconds with result 0 +[2023-Jun-02 16:49:13] [debug] [ Client] - program +[2023-Jun-02 16:49:13] [debug] [ nRF52] - program +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.010ms returns 0x01 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:13] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 16:49:13] [debug] [ nRF52] - program_file +[2023-Jun-02 16:49:13] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 16:49:13] [ info] [ nRF52] - Check program file +[2023-Jun-02 16:49:13] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:49:13] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.308ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.253ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:13] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.388ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:49:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:49:13] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:49:13] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:49:13] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:49:13] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:49:13] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":934,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:49:13] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.386ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.365ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:49:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:49:13] [ info] [ nRF52] - Program flash. +[2023-Jun-02 16:49:13] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:49:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_write +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - write +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMem(0x0000676A, 0x2 Bytes, ...) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0x00006740) +[2023-Jun-02 16:49:13] [trace] [ JLink] - -- Updating C cache (64 bytes @ 0x00006740) +[2023-Jun-02 16:49:13] [trace] [ JLink] - -- Read from C cache (2 bytes @ 0x0000676A) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: FF FF +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.784ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.314ms returns 0 (0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x676C Bytes, ...) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 40 17 00 20 A5 15 00 00 89 51 00 00 79 15 00 00 ... +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_WriteMem(26476 bytes @ 0x00000000) +[2023-Jun-02 16:49:13] [trace] [ Client] - Command program_file executed for 193 milliseconds with result 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 172.655ms returns 0x676C +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.328ms returns 0 (0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:49:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":175,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 16:49:13] [trace] [ Worker] - Command program_file executed for 193 milliseconds with result 0 +[2023-Jun-02 16:49:13] [debug] [ Client] - verify +[2023-Jun-02 16:49:13] [debug] [ nRF52] - verify +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.007ms returns 0x01 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:13] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 16:49:13] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 16:49:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:49:13] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:49:13] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:13] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:49:13] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:13] [ info] [ nRF52] - Verify +[2023-Jun-02 16:49:13] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:49:13] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:49:13] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:49:13] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:49:13] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:49:13] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":1176,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:49:13] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:49:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:49:13] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 16:49:13] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:49:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_read +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.308ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x676A Bytes, ...) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(26496 bytes @ 0x00000000) +[2023-Jun-02 16:49:13] [trace] [ Client] - Command verify_file executed for 187 milliseconds with result 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - -- Updating C cache (26496 bytes @ 0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - -- Read from C cache (26474 bytes @ 0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Data: 40 17 00 20 A5 15 00 00 89 51 00 00 79 15 00 00 ... +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 177.156ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:49:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":177,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.022ms +[2023-Jun-02 16:49:13] [trace] [ Worker] - Command verify_file executed for 187 milliseconds with result 0 +[2023-Jun-02 16:49:13] [debug] [ Client] - sys_reset +[2023-Jun-02 16:49:13] [debug] [ nRF52] - sys_reset +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:49:13] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:49:13] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:49:13] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:49:13] [trace] [ Client] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 16:49:13] [debug] [ Client] - go +[2023-Jun-02 16:49:13] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 64.050ms +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:49:13] [trace] [ Worker] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 16:49:13] [debug] [ nRF52] - go +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_go +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:13] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - go +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:49:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 1.036ms +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:49:13] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 16:49:13] [debug] [ nRF52] - close +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - close +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:49:13] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:49:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:13] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:36] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:49:36] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 16:49:36] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 16:49:36] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:49:36] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 16:49:36] [ info] Library loaded, loading member functions. +[2023-Jun-02 16:49:36] [ info] Member functions succesfully loaded. +[2023-Jun-02 16:49:36] [debug] [ Client] - open +[2023-Jun-02 16:49:36] [debug] [ Client] - start +[2023-Jun-02 16:49:36] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence 4925ba0f-6b41-47d7-b02a-25cbe9c495fe. +[2023-Jun-02 16:49:36] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 16:49:36] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 16:49:36] [debug] [ nRF52] - open +[2023-Jun-02 16:49:36] [debug] [ nRF52] - just_check_family +[2023-Jun-02 16:49:36] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 16:49:36] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 16:49:36] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:49:36] [debug] [ Client] - config +[2023-Jun-02 16:49:36] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:36] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 16:49:36] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 16:49:36] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 16:49:36] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 16:49:36] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 16:49:36] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 16:49:36] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 16:49:36] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:49:36] [debug] [ nRF52] - config +[2023-Jun-02 16:49:36] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 16:49:36] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:36] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 16:49:36] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:36] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 16:49:37] [trace] [ Client] - Command enum_emu_con_info executed for 105 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:37] [trace] [ Worker] - Command enum_emu_con_info executed for 105 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 16:49:37] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:49:37] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:49:37] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 16:49:37] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 16:49:37] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 16:49:37] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 16:49:37] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 16:49:37] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 16:49:37] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 16:49:37] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:49:37] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:49:37] [trace] [ Client] - Command connect_to_emu_with_snr executed for 346 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 16:49:37] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ Client] - read_device_info +[2023-Jun-02 16:49:37] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 27.394ms returns "O.K." +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.000ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.003ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.423ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 16:49:37] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.057ms +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:49:37] [debug] [ nRF52] - read_device_family +[2023-Jun-02 16:49:37] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 346 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:49:37] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.357ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.000ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:49:37] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.239ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 16:49:37] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:49:37] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:49:37] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 16:49:37] [trace] [ JLink] - InitTarget() end - Took 1.79ms +[2023-Jun-02 16:49:37] [trace] [ JLink] - InitTarget() end - Took 1.79ms +[2023-Jun-02 16:49:37] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:49:37] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:49:37] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:49:37] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:49:37] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:49:37] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:49:37] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:49:37] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:49:37] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:49:37] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:49:37] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:49:37] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:49:37] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:49:37] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:49:37] [trace] [ Client] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:49:37] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:49:37] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:49:37] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:49:37] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:49:37] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:49:37] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:49:37] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:49:37] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:49:37] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:49:37] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 13.108ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0xE0000FF +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 16:49:37] [trace] [ Worker] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ Client] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:49:37] [trace] [ Client] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:49:37] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:49:37] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:49:37] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:49:37] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:49:37] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:49:37] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:49:37] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:49:37] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:49:37] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:49:37] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:49:37] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:49:37] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:37] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.021ms +[2023-Jun-02 16:49:37] [trace] [ Worker] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:37] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.011ms +[2023-Jun-02 16:49:37] [trace] [ Worker] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:49:37] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:49:37] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:49:37] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:49:37] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:49:37] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:49:37] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:49:37] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:49:37] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:49:37] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:49:37] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:49:37] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:49:37] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:49:37] [debug] [ Client] - erase +[2023-Jun-02 16:49:37] [debug] [ nRF52] - erase_file +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.007ms returns 0x01 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - erase +[2023-Jun-02 16:49:37] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:49:37] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:49:37] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:49:37] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:49:37] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:49:37] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:49:37] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:49:37] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:49:37] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:49:37] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.291ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.306ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 3.352ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.585ms returns 0 (0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:49:37] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:49:37] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:49:37] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:49:37] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 63.797ms +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:37] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:49:37] [ info] [ nRF52] - Erasing +[2023-Jun-02 16:49:37] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:49:37] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:49:37] [ info] [ nRF52] - Erasing flash range [0x00000000-0x0000676A] +[2023-Jun-02 16:49:37] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:49:37] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.286ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.618ms returns 0 (0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.308ms returns 0 (0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.390ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.337ms returns 0 (0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:49:37] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.252ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.290ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.355ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.322ms returns 0 (0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.332ms returns 0 (0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.347ms returns 0 (0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:49:37] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.356ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.366ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.388ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.305ms returns 0 (0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.365ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.279ms returns 0 (0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.328ms returns 0 (0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:49:37] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.274ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.306ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.327ms returns 0 (0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.397ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.327ms returns 0 (0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:49:37] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.305ms returns 0 (0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.365ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.291ms returns 0 (0x00000000) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:37] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:37] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:37] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 16:49:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.348ms returns 0 (0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:49:38] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.317ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.303ms returns 0 (0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00005000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.289ms returns 0 (0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.353ms returns 0 (0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:49:38] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.267ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.330ms returns 0 (0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00006000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.267ms returns 0 (0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ Client] - Command erase_file executed for 880 milliseconds with result 0 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:49:38] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":791,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.016ms +[2023-Jun-02 16:49:38] [trace] [ Worker] - Command erase_file executed for 879 milliseconds with result 0 +[2023-Jun-02 16:49:38] [debug] [ Client] - program +[2023-Jun-02 16:49:38] [debug] [ nRF52] - program +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.007ms returns 0x01 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:38] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 16:49:38] [debug] [ nRF52] - program_file +[2023-Jun-02 16:49:38] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 16:49:38] [ info] [ nRF52] - Check program file +[2023-Jun-02 16:49:38] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:49:38] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.288ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:38] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.392ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:49:38] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:49:38] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:49:38] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:49:38] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:49:38] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:49:38] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":929,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:49:38] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:49:38] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:49:38] [ info] [ nRF52] - Program flash. +[2023-Jun-02 16:49:38] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:49:38] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_write +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - write +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMem(0x0000676A, 0x2 Bytes, ...) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0x00006740) +[2023-Jun-02 16:49:38] [trace] [ JLink] - -- Updating C cache (64 bytes @ 0x00006740) +[2023-Jun-02 16:49:38] [trace] [ JLink] - -- Read from C cache (2 bytes @ 0x0000676A) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: FF FF +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.751ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.307ms returns 0 (0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x676C Bytes, ...) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 40 17 00 20 A5 15 00 00 89 51 00 00 79 15 00 00 ... +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_WriteMem(26476 bytes @ 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 172.720ms returns 0x676C +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.014ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.441ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ Client] - Command program_file executed for 188 milliseconds with result 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.408ms returns 0 (0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.009ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:49:38] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":176,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.057ms +[2023-Jun-02 16:49:38] [trace] [ Worker] - Command program_file executed for 188 milliseconds with result 0 +[2023-Jun-02 16:49:38] [debug] [ Client] - verify +[2023-Jun-02 16:49:38] [debug] [ nRF52] - verify +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.008ms returns 0x01 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:38] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 16:49:38] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 16:49:38] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:49:38] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:49:38] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:38] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:49:38] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:49:38] [ info] [ nRF52] - Verify +[2023-Jun-02 16:49:38] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:49:38] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:49:38] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:49:38] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:49:38] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:49:38] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":1171,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:49:38] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:49:38] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:49:38] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 16:49:38] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:49:38] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_read +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.307ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x676A Bytes, ...) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(26496 bytes @ 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ Client] - Command verify_file executed for 187 milliseconds with result 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - -- Updating C cache (26496 bytes @ 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - -- Read from C cache (26474 bytes @ 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Data: 40 17 00 20 A5 15 00 00 89 51 00 00 79 15 00 00 ... +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 177.194ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:49:38] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":177,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.026ms +[2023-Jun-02 16:49:38] [trace] [ Worker] - Command verify_file executed for 187 milliseconds with result 0 +[2023-Jun-02 16:49:38] [debug] [ Client] - sys_reset +[2023-Jun-02 16:49:38] [debug] [ nRF52] - sys_reset +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.004ms returns 0x01 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.003ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:49:38] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:49:38] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:49:38] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:49:38] [trace] [ Client] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 16:49:38] [debug] [ Client] - go +[2023-Jun-02 16:49:38] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 63.521ms +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:49:38] [trace] [ Worker] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 16:49:38] [debug] [ nRF52] - go +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_go +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:49:38] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.273ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:49:38] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - go +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:49:38] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 1.115ms +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:49:38] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 16:49:38] [debug] [ nRF52] - close +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - close +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:49:38] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:49:38] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:49:38] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:39] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:50:39] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 16:50:39] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 16:50:39] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:50:39] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 16:50:39] [ info] Library loaded, loading member functions. +[2023-Jun-02 16:50:39] [ info] Member functions succesfully loaded. +[2023-Jun-02 16:50:39] [debug] [ Client] - open +[2023-Jun-02 16:50:39] [debug] [ Client] - start +[2023-Jun-02 16:50:39] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence 61464e66-7b48-4e0c-a49d-ba8736509ed2. +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 16:50:39] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 16:50:39] [debug] [ nRF52] - open +[2023-Jun-02 16:50:39] [debug] [ nRF52] - just_check_family +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 16:50:39] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ Client] - config +[2023-Jun-02 16:50:39] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 16:50:39] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 16:50:39] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 16:50:39] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 16:50:39] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 16:50:39] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - config +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 16:50:39] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 16:50:39] [trace] [ Client] - Command enum_emu_con_info executed for 105 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:50:39] [trace] [ Worker] - Command enum_emu_con_info executed for 105 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 16:50:39] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:50:39] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:50:39] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 16:50:39] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 16:50:39] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 16:50:39] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 16:50:39] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 16:50:39] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 16:50:39] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 16:50:39] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:50:39] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:50:39] [trace] [ Client] - Command connect_to_emu_with_snr executed for 358 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 16:50:39] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ Client] - read_device_info +[2023-Jun-02 16:50:39] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 26.370ms returns "O.K." +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.000ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.002ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.453ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 16:50:39] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.052ms +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:50:39] [debug] [ nRF52] - read_device_family +[2023-Jun-02 16:50:39] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 358 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:50:39] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.087ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.336ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.293ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:50:39] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.310ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 16:50:39] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:50:39] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:50:39] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 16:50:39] [trace] [ JLink] - InitTarget() end - Took 1.71ms +[2023-Jun-02 16:50:39] [trace] [ JLink] - InitTarget() end - Took 1.71ms +[2023-Jun-02 16:50:39] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:50:39] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:50:39] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:50:39] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:50:39] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:50:39] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:50:39] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:50:39] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:50:39] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:50:39] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:50:39] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:50:39] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:50:39] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:50:39] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:50:39] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:50:39] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:50:39] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:50:39] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:50:39] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:50:39] [trace] [ Client] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:50:39] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:50:39] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:50:39] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:50:39] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:50:39] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:50:39] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 13.181ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0xE0000FF +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.025ms +[2023-Jun-02 16:50:39] [trace] [ Worker] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 16:50:39] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:50:39] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:39] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.263ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.032ms +[2023-Jun-02 16:50:39] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:39] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:50:39] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:50:39] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.017ms +[2023-Jun-02 16:50:39] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:50:39] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:50:39] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:50:39] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:50:39] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:50:39] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:50:39] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:50:39] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:50:39] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:50:39] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:50:39] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:50:39] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:50:39] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:50:39] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:50:39] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:50:39] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:50:39] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:50:39] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:50:39] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:50:39] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:50:39] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:50:39] [debug] [ Client] - erase +[2023-Jun-02 16:50:39] [debug] [ nRF52] - erase_file +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.007ms returns 0x01 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - erase +[2023-Jun-02 16:50:39] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:50:39] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.262ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:50:39] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:50:39] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:50:39] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:50:39] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:50:39] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:50:39] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:50:39] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:50:39] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.260ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.306ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 3.249ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.618ms returns 0 (0x00000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.360ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.291ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:50:39] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.003ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:50:39] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:50:39] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:50:39] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 63.944ms +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:39] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:50:39] [ info] [ nRF52] - Erasing +[2023-Jun-02 16:50:39] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:50:39] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:50:39] [ info] [ nRF52] - Erasing flash range [0x00000000-0x0000676A] +[2023-Jun-02 16:50:39] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:50:39] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.268ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.291ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.286ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.287ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.265ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.356ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.636ms returns 0 (0x00000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.325ms returns 0 (0x00000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.379ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.381ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.405ms returns 0 (0x00000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:50:39] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.260ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.261ms returns 0 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:50:39] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.378ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:50:39] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:50:39] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:39] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 16:50:39] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:39] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.290ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.254ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.348ms returns 0 (0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.341ms returns 0 (0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.349ms returns 0 (0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:50:40] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.369ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.262ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.322ms returns 0 (0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.357ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.365ms returns 0 (0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.290ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.364ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:50:40] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.359ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.348ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.368ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.356ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.371ms returns 0 (0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.360ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.291ms returns 0 (0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.308ms returns 0 (0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:50:40] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.252ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.368ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.350ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.398ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.153ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.314ms returns 0 (0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.330ms returns 0 (0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.398ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.342ms returns 0 (0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.289ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:50:40] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.263ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.369ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.360ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.292ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.263ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.290ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.295ms returns 0 (0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00005000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.369ms returns 0 (0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.010ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.290ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.390ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.311ms returns 0 (0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:50:40] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.349ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.356ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.153ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.286ms returns 0 (0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00006000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.314ms returns 0 (0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.361ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ Client] - Command erase_file executed for 883 milliseconds with result 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.303ms returns 0 (0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:50:40] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":794,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.016ms +[2023-Jun-02 16:50:40] [trace] [ Worker] - Command erase_file executed for 883 milliseconds with result 0 +[2023-Jun-02 16:50:40] [debug] [ Client] - program +[2023-Jun-02 16:50:40] [debug] [ nRF52] - program +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.007ms returns 0x01 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:50:40] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 16:50:40] [debug] [ nRF52] - program_file +[2023-Jun-02 16:50:40] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 16:50:40] [ info] [ nRF52] - Check program file +[2023-Jun-02 16:50:40] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:50:40] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:50:40] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.357ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:50:40] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:50:40] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:50:40] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:50:40] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:50:40] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:50:40] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":934,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:50:40] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.271ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.383ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.306ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.305ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:50:40] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:50:40] [ info] [ nRF52] - Program flash. +[2023-Jun-02 16:50:40] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:50:40] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_write +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - write +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMem(0x0000676A, 0x2 Bytes, ...) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0x00006740) +[2023-Jun-02 16:50:40] [trace] [ JLink] - -- Updating C cache (64 bytes @ 0x00006740) +[2023-Jun-02 16:50:40] [trace] [ JLink] - -- Read from C cache (2 bytes @ 0x0000676A) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: FF FF +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.769ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.288ms returns 0 (0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.263ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x676C Bytes, ...) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 40 17 00 20 A5 15 00 00 89 51 00 00 79 15 00 00 ... +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_WriteMem(26476 bytes @ 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ Client] - Command program_file executed for 189 milliseconds with result 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 172.801ms returns 0x676C +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.284ms returns 0 (0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:50:40] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":175,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.016ms +[2023-Jun-02 16:50:40] [trace] [ Worker] - Command program_file executed for 188 milliseconds with result 0 +[2023-Jun-02 16:50:40] [debug] [ Client] - verify +[2023-Jun-02 16:50:40] [debug] [ nRF52] - verify +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.007ms returns 0x01 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:50:40] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 16:50:40] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 16:50:40] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:50:40] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:50:40] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:50:40] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.349ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:50:40] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.289ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:50:40] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:50:40] [ info] [ nRF52] - Verify +[2023-Jun-02 16:50:40] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:50:40] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:50:40] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:50:40] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:50:40] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:50:40] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":1176,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:50:40] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:50:40] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:50:40] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 16:50:40] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:50:40] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:50:40] [debug] [ nRF52] - Just_read +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - read +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.313ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 16:50:40] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:50:40] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:40] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x676A Bytes, ...) +[2023-Jun-02 16:50:40] [trace] [ JLink] - CPU_ReadMem(26496 bytes @ 0x00000000) +[2023-Jun-02 16:50:41] [trace] [ Client] - Command verify_file executed for 188 milliseconds with result 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - -- Updating C cache (26496 bytes @ 0x00000000) +[2023-Jun-02 16:50:41] [trace] [ JLink] - -- Read from C cache (26474 bytes @ 0x00000000) +[2023-Jun-02 16:50:41] [trace] [ JLink] - Data: 40 17 00 20 A5 15 00 00 89 51 00 00 79 15 00 00 ... +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 177.648ms returns 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:50:41] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":178,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.030ms +[2023-Jun-02 16:50:41] [trace] [ Worker] - Command verify_file executed for 188 milliseconds with result 0 +[2023-Jun-02 16:50:41] [debug] [ Client] - sys_reset +[2023-Jun-02 16:50:41] [debug] [ nRF52] - sys_reset +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.007ms returns 0x01 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:50:41] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 16:50:41] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:41] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:50:41] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:41] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:41] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.260ms returns 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:41] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:41] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:41] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:41] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:41] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:41] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.003ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:50:41] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:50:41] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:50:41] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:50:41] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:50:41] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:50:41] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:50:41] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:50:41] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:50:41] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:50:41] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:50:41] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:50:41] [trace] [ Client] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 16:50:41] [debug] [ Client] - go +[2023-Jun-02 16:50:41] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:50:41] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:50:41] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 64.278ms +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:50:41] [trace] [ Worker] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 16:50:41] [debug] [ nRF52] - go +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:50:41] [debug] [ nRF52] - Just_go +[2023-Jun-02 16:50:41] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:50:41] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:50:41] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:41] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:41] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:41] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.261ms returns 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:41] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.284ms returns 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:41] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:41] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:41] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:50:41] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - go +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 16:50:41] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:50:41] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 1.048ms +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:50:41] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 16:50:41] [debug] [ nRF52] - close +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - close +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:50:41] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:50:41] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:50:41] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:04] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:51:04] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 16:51:04] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 16:51:04] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:51:04] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 16:51:04] [ info] Library loaded, loading member functions. +[2023-Jun-02 16:51:04] [ info] Member functions succesfully loaded. +[2023-Jun-02 16:51:04] [debug] [ Client] - open +[2023-Jun-02 16:51:04] [debug] [ Client] - start +[2023-Jun-02 16:51:04] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence 1fa7a811-53a8-4a0d-87b2-736c847da09c. +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 16:51:04] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 16:51:04] [debug] [ nRF52] - open +[2023-Jun-02 16:51:04] [debug] [ nRF52] - just_check_family +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 16:51:04] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ Client] - config +[2023-Jun-02 16:51:04] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 16:51:04] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 16:51:04] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 16:51:04] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 16:51:04] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 16:51:04] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - config +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 16:51:04] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 16:51:04] [trace] [ Client] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:51:04] [trace] [ Worker] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 16:51:04] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:51:04] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:51:04] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 16:51:04] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 16:51:04] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 16:51:04] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 16:51:04] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 16:51:04] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 16:51:04] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 16:51:04] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:51:04] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:51:04] [trace] [ Client] - Command connect_to_emu_with_snr executed for 339 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 16:51:04] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ Client] - read_device_info +[2023-Jun-02 16:51:04] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 27.919ms returns "O.K." +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.002ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.380ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 16:51:04] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.054ms +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:51:04] [debug] [ nRF52] - read_device_family +[2023-Jun-02 16:51:04] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 339 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:51:04] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.096ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.417ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.260ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.000ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:51:04] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.277ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 16:51:04] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:51:04] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:51:04] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 16:51:04] [trace] [ JLink] - InitTarget() end - Took 1.79ms +[2023-Jun-02 16:51:04] [trace] [ JLink] - InitTarget() end - Took 1.79ms +[2023-Jun-02 16:51:04] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:51:04] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:51:04] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:51:04] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:51:04] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:51:04] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:51:04] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:51:04] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:51:04] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:51:04] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:51:04] [trace] [ Client] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:51:04] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:51:04] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:51:04] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:51:04] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:51:04] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:51:04] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:51:04] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:51:04] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:51:04] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 16:51:04] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:51:04] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 16:51:04] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:51:04] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 16:51:04] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:51:04] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 16:51:04] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:51:04] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 16:51:04] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:51:04] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 16:51:04] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:51:04] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 12.917ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0xE0000FF +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.013ms +[2023-Jun-02 16:51:04] [trace] [ Worker] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:51:04] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:51:04] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:51:04] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:51:04] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:51:04] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:51:04] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:51:04] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:51:04] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:51:04] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:51:04] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:51:04] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:51:04] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:51:04] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:04] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.023ms +[2023-Jun-02 16:51:04] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.262ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:04] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.011ms +[2023-Jun-02 16:51:04] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:51:04] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:51:04] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:51:04] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:51:04] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:51:04] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:51:04] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:51:04] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:51:04] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:51:04] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:51:04] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:51:04] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:51:04] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:51:04] [debug] [ Client] - erase +[2023-Jun-02 16:51:04] [debug] [ nRF52] - erase_file +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - erase +[2023-Jun-02 16:51:04] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:51:04] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.288ms returns 1 (0x1) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:51:04] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:51:04] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:51:04] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:51:04] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:51:04] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:51:04] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:51:04] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:51:04] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.387ms returns 1 (0x1) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 3.232ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.619ms returns 0 (0x00000000) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:51:04] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:51:04] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:51:04] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:04] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:51:04] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:51:04] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:51:04] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:51:04] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:51:04] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 63.461ms +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:05] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:51:05] [ info] [ nRF52] - Erasing +[2023-Jun-02 16:51:05] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:51:05] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:51:05] [ info] [ nRF52] - Erasing flash range [0x00000000-0x0000676A] +[2023-Jun-02 16:51:05] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:51:05] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.637ms returns 0 (0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.302ms returns 0 (0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.363ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:51:05] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.144ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.301ms returns 0 (0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.266ms returns 0 (0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.306ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.318ms returns 0 (0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:51:05] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.389ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.363ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.290ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.335ms returns 0 (0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.301ms returns 0 (0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.326ms returns 0 (0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:51:05] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.277ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.318ms returns 0 (0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.299ms returns 0 (0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.407ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.327ms returns 0 (0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:51:05] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.271ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.306ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.308ms returns 0 (0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.283ms returns 0 (0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.287ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.286ms returns 0 (0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:51:05] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.320ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.302ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.362ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.345ms returns 0 (0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00005000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.320ms returns 0 (0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.400ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.330ms returns 0 (0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:51:05] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.278ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.287ms returns 0 (0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00006000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.375ms returns 0 (0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ Client] - Command erase_file executed for 879 milliseconds with result 0 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.391ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:51:05] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":791,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 16:51:05] [trace] [ Worker] - Command erase_file executed for 879 milliseconds with result 0 +[2023-Jun-02 16:51:05] [debug] [ Client] - program +[2023-Jun-02 16:51:05] [debug] [ nRF52] - program +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:51:05] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 16:51:05] [debug] [ nRF52] - program_file +[2023-Jun-02 16:51:05] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 16:51:05] [ info] [ nRF52] - Check program file +[2023-Jun-02 16:51:05] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:51:05] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:51:05] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:51:05] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:51:05] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:51:05] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:51:05] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:51:05] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:51:05] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":929,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:51:05] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.389ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.385ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:51:05] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:51:05] [ info] [ nRF52] - Program flash. +[2023-Jun-02 16:51:05] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:51:05] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_write +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - write +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMem(0x0000676A, 0x2 Bytes, ...) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0x00006740) +[2023-Jun-02 16:51:05] [trace] [ JLink] - -- Updating C cache (64 bytes @ 0x00006740) +[2023-Jun-02 16:51:05] [trace] [ JLink] - -- Read from C cache (2 bytes @ 0x0000676A) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: FF FF +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.785ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.330ms returns 0 (0x00000000) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:05] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:05] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:05] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x676C Bytes, ...) +[2023-Jun-02 16:51:05] [trace] [ JLink] - Data: 40 17 00 20 A5 15 00 00 89 51 00 00 79 15 00 00 ... +[2023-Jun-02 16:51:05] [trace] [ JLink] - CPU_WriteMem(26476 bytes @ 0x00000000) +[2023-Jun-02 16:51:06] [trace] [ Client] - Command program_file executed for 188 milliseconds with result 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 172.587ms returns 0x676C +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:51:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.325ms returns 0 (0x00000000) +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:51:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:51:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":175,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.017ms +[2023-Jun-02 16:51:06] [trace] [ Worker] - Command program_file executed for 188 milliseconds with result 0 +[2023-Jun-02 16:51:06] [debug] [ Client] - verify +[2023-Jun-02 16:51:06] [debug] [ nRF52] - verify +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:51:06] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 16:51:06] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 16:51:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:51:06] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:51:06] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:51:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:51:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:51:06] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:51:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:51:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:51:06] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:51:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:51:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:51:06] [ info] [ nRF52] - Verify +[2023-Jun-02 16:51:06] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:51:06] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:51:06] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:51:06] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:51:06] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:51:06] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":1171,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:51:06] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:51:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:51:06] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 16:51:06] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:51:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Just_read +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.304ms returns 0x00 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x676A Bytes, ...) +[2023-Jun-02 16:51:06] [trace] [ JLink] - CPU_ReadMem(26496 bytes @ 0x00000000) +[2023-Jun-02 16:51:06] [trace] [ Client] - Command verify_file executed for 187 milliseconds with result 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - -- Updating C cache (26496 bytes @ 0x00000000) +[2023-Jun-02 16:51:06] [trace] [ JLink] - -- Read from C cache (26474 bytes @ 0x00000000) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Data: 40 17 00 20 A5 15 00 00 89 51 00 00 79 15 00 00 ... +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 177.168ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:51:06] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":177,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.025ms +[2023-Jun-02 16:51:06] [trace] [ Worker] - Command verify_file executed for 187 milliseconds with result 0 +[2023-Jun-02 16:51:06] [debug] [ Client] - sys_reset +[2023-Jun-02 16:51:06] [debug] [ nRF52] - sys_reset +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.285ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.003ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:51:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:51:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:51:06] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:51:06] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:51:06] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:51:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:51:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:51:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:51:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:51:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:51:06] [trace] [ Client] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 16:51:06] [debug] [ Client] - go +[2023-Jun-02 16:51:06] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:51:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:51:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 63.782ms +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:51:06] [trace] [ Worker] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 16:51:06] [debug] [ nRF52] - go +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Just_go +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:51:06] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.153ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:51:06] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - go +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 16:51:06] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:51:06] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 1.058ms +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:51:06] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 16:51:06] [debug] [ nRF52] - close +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - close +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:51:06] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:51:06] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:51:06] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:47] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:54:47] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 16:54:47] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 16:54:47] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 16:54:47] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 16:54:47] [ info] Library loaded, loading member functions. +[2023-Jun-02 16:54:47] [ info] Member functions succesfully loaded. +[2023-Jun-02 16:54:47] [debug] [ Client] - open +[2023-Jun-02 16:54:47] [debug] [ Client] - start +[2023-Jun-02 16:54:47] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence e9726fe8-700e-403c-bd9d-7fbe093eedfa. +[2023-Jun-02 16:54:47] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 16:54:47] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 16:54:47] [debug] [ nRF52] - open +[2023-Jun-02 16:54:47] [debug] [ nRF52] - just_check_family +[2023-Jun-02 16:54:47] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 16:54:47] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 16:54:47] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:54:47] [debug] [ Client] - config +[2023-Jun-02 16:54:47] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:47] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 16:54:47] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 16:54:47] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 16:54:47] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 16:54:47] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 16:54:47] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 16:54:47] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 16:54:47] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 16:54:47] [debug] [ nRF52] - config +[2023-Jun-02 16:54:47] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 16:54:47] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:47] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 16:54:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:54:47] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 16:54:48] [trace] [ Client] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:54:48] [trace] [ Worker] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 16:54:48] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:54:48] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 16:54:48] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 16:54:48] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 16:54:48] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 16:54:48] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 16:54:48] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 16:54:48] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 16:54:48] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 16:54:48] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:54:48] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 16:54:48] [trace] [ Client] - Command connect_to_emu_with_snr executed for 343 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 16:54:48] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ Client] - read_device_info +[2023-Jun-02 16:54:48] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 27.608ms returns "O.K." +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.421ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 16:54:48] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.050ms +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:54:48] [debug] [ nRF52] - read_device_family +[2023-Jun-02 16:54:48] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 343 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:54:48] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.131ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.330ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns FALSE +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:54:48] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.252ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 16:54:48] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:54:48] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 16:54:48] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 16:54:48] [trace] [ JLink] - InitTarget() end - Took 1.67ms +[2023-Jun-02 16:54:48] [trace] [ JLink] - InitTarget() end - Took 1.67ms +[2023-Jun-02 16:54:48] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:54:48] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 16:54:48] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:54:48] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 16:54:48] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:54:48] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 16:54:48] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:54:48] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 16:54:48] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:54:48] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 16:54:48] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:54:48] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 16:54:48] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:54:48] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 16:54:48] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:54:48] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:54:48] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 16:54:48] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:54:48] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 16:54:48] [trace] [ Client] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:54:48] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 16:54:48] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:54:48] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:54:48] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:54:48] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:54:48] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:54:48] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 12.981ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0xE0000FF +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 16:54:48] [trace] [ Worker] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:48] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.022ms +[2023-Jun-02 16:54:48] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.262ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.149ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:54:48] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:54:48] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:54:48] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:54:48] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:54:48] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:54:48] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:54:48] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:54:48] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:54:48] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:54:48] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:54:48] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ Client] - read_page_sizes +[2023-Jun-02 16:54:48] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:48] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 16:54:48] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:54:48] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:54:48] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:54:48] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:54:48] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:54:48] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:54:48] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:54:48] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:54:48] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:54:48] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:54:48] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:54:48] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 16:54:48] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 16:54:48] [debug] [ Client] - erase +[2023-Jun-02 16:54:48] [debug] [ nRF52] - erase_file +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - erase +[2023-Jun-02 16:54:48] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:54:48] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:54:48] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:54:48] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:54:48] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:54:48] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:54:48] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:54:48] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:54:48] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:54:48] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.381ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.389ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 3.330ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.613ms returns 0 (0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:54:48] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:54:48] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:54:48] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:54:48] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 63.939ms +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:48] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:54:48] [ info] [ nRF52] - Erasing +[2023-Jun-02 16:54:48] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:54:48] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:54:48] [ info] [ nRF52] - Erasing flash range [0x00000000-0x0000667C] +[2023-Jun-02 16:54:48] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:54:48] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.305ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.622ms returns 0 (0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.303ms returns 0 (0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.328ms returns 0 (0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:54:48] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.379ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.364ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.266ms returns 0 (0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.280ms returns 0 (0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.328ms returns 0 (0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:54:48] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.367ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.282ms returns 0 (0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.283ms returns 0 (0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.326ms returns 0 (0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:54:48] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.267ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.373ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.356ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.306ms returns 0 (0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.292ms returns 0 (0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.368ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.318ms returns 0 (0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:54:48] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.264ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.372ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.330ms returns 0 (0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.289ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.149ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.300ms returns 0 (0x00000000) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:48] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:48] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:48] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:48] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 16:54:48] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.326ms returns 0 (0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:54:49] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.389ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.009ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.362ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.013ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.371ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.288ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.325ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.275ms returns 0 (0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00005000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.282ms returns 0 (0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.330ms returns 0 (0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - erase_page +[2023-Jun-02 16:54:49] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.365ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.465ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.408ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.373ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.377ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.278ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.254ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - halt +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.326ms returns 0 (0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.317ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00006000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.309ms returns 0 (0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.286ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.348ms returns 0 (0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:49] [trace] [ Client] - Command erase_file executed for 880 milliseconds with result 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:54:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":791,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.017ms +[2023-Jun-02 16:54:49] [trace] [ Worker] - Command erase_file executed for 880 milliseconds with result 0 +[2023-Jun-02 16:54:49] [debug] [ Client] - program +[2023-Jun-02 16:54:49] [debug] [ nRF52] - program +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:54:49] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 16:54:49] [debug] [ nRF52] - program_file +[2023-Jun-02 16:54:49] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 16:54:49] [ info] [ nRF52] - Check program file +[2023-Jun-02 16:54:49] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:54:49] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.279ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:54:49] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.262ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:54:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:54:49] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:54:49] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:54:49] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:54:49] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:54:49] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":931,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:54:49] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.386ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:54:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:54:49] [ info] [ nRF52] - Program flash. +[2023-Jun-02 16:54:49] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:54:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_write +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - write +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.315ms returns 0 (0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x667C Bytes, ...) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: C0 16 00 20 A5 15 00 00 85 51 00 00 79 15 00 00 ... +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_WriteMem(26236 bytes @ 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ Client] - Command program_file executed for 188 milliseconds with result 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 171.535ms returns 0x667C +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.009ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.372ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.252ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.378ms returns 0 (0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.361ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:54:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":174,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.022ms +[2023-Jun-02 16:54:49] [trace] [ Worker] - Command program_file executed for 188 milliseconds with result 0 +[2023-Jun-02 16:54:49] [debug] [ Client] - verify +[2023-Jun-02 16:54:49] [debug] [ nRF52] - verify +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:54:49] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 16:54:49] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 16:54:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:54:49] [debug] [ nRF52] - init_device_info +[2023-Jun-02 16:54:49] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.260ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.372ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:54:49] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 16:54:49] [debug] [ nRF52] - read_device_info +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.278ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 16:54:49] [ info] [ nRF52] - Verify +[2023-Jun-02 16:54:49] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 16:54:49] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 16:54:49] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 16:54:49] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 16:54:49] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 16:54:49] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":1171,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 16:54:49] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 16:54:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 16:54:49] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 16:54:49] [debug] [ nRF52] - loop_image +[2023-Jun-02 16:54:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_read +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.311ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x667C Bytes, ...) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(26240 bytes @ 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ Client] - Command verify_file executed for 185 milliseconds with result 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - -- Updating C cache (26240 bytes @ 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - -- Read from C cache (26236 bytes @ 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Data: C0 16 00 20 A5 15 00 00 85 51 00 00 79 15 00 00 ... +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 175.355ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:54:49] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":175,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.025ms +[2023-Jun-02 16:54:49] [trace] [ Worker] - Command verify_file executed for 185 milliseconds with result 0 +[2023-Jun-02 16:54:49] [debug] [ Client] - sys_reset +[2023-Jun-02 16:54:49] [debug] [ nRF52] - sys_reset +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.004ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:54:49] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 16:54:49] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:54:49] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:54:49] [trace] [ Client] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 16:54:49] [debug] [ Client] - go +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 63.660ms +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.004ms +[2023-Jun-02 16:54:49] [trace] [ Worker] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 16:54:49] [debug] [ nRF52] - go +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_go +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 16:54:49] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.287ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - go +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 16:54:49] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 1.050ms +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 16:54:49] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 16:54:49] [debug] [ nRF52] - close +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - close +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 16:54:49] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 16:54:49] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 16:54:49] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 16:54:49] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:11] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 17:05:11] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 17:05:11] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 17:05:11] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 17:05:11] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 17:05:11] [ info] Library loaded, loading member functions. +[2023-Jun-02 17:05:11] [ info] Member functions succesfully loaded. +[2023-Jun-02 17:05:11] [debug] [ Client] - open +[2023-Jun-02 17:05:11] [debug] [ Client] - start +[2023-Jun-02 17:05:11] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence 852b809a-043b-45b6-9e3f-8cb9b0623933. +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 17:05:11] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 17:05:11] [debug] [ nRF52] - open +[2023-Jun-02 17:05:11] [debug] [ nRF52] - just_check_family +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 17:05:11] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ Client] - config +[2023-Jun-02 17:05:11] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 17:05:11] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 17:05:11] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 17:05:11] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 17:05:11] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 17:05:11] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - config +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 17:05:11] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 17:05:11] [trace] [ Client] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:11] [trace] [ Worker] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 17:05:11] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 17:05:11] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 17:05:11] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 17:05:11] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 17:05:11] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 17:05:11] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 17:05:11] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 17:05:11] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 17:05:11] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 17:05:11] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 17:05:11] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 17:05:11] [trace] [ Client] - Command connect_to_emu_with_snr executed for 338 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 17:05:11] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ Client] - read_device_info +[2023-Jun-02 17:05:11] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 26.859ms returns "O.K." +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.003ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.341ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 17:05:11] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.050ms +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:05:11] [debug] [ nRF52] - read_device_family +[2023-Jun-02 17:05:11] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 338 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:05:11] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.087ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.350ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0xF0000000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.139ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 17:05:11] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.205ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 17:05:11] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 17:05:11] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 17:05:11] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 17:05:11] [trace] [ JLink] - InitTarget() end - Took 1.56ms +[2023-Jun-02 17:05:11] [trace] [ JLink] - InitTarget() end - Took 1.56ms +[2023-Jun-02 17:05:11] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 17:05:11] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 17:05:11] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 17:05:11] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 17:05:11] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 17:05:11] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 17:05:11] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 17:05:11] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 17:05:11] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 17:05:11] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 17:05:11] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 17:05:11] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 17:05:11] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 17:05:11] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 17:05:11] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:05:11] [trace] [ Client] - Command read_device_info executed for 15 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 17:05:11] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 17:05:11] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 17:05:11] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 17:05:11] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 17:05:11] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 17:05:11] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 17:05:11] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 17:05:11] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 17:05:11] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 17:05:11] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 17:05:11] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 17:05:11] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 17:05:11] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 17:05:11] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 17:05:11] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 17:05:11] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 12.107ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 0xE0000FF +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 17:05:11] [trace] [ Worker] - Command read_device_info executed for 15 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.149ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:11] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:11] [trace] [ Client] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 17:05:11] [trace] [ Client] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:05:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:05:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:05:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:05:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:05:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:05:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:05:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:05:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:05:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:05:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:05:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:05:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.022ms +[2023-Jun-02 17:05:11] [trace] [ Worker] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.141ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.149ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.278ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:11] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.013ms +[2023-Jun-02 17:05:11] [trace] [ Worker] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:05:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:05:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:05:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:05:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:05:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:05:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:05:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:05:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:05:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:05:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:05:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:05:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:11] [debug] [ Client] - erase +[2023-Jun-02 17:05:11] [debug] [ nRF52] - erase_file +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.004ms returns 0x01 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:11] [debug] [ nRF52] - erase +[2023-Jun-02 17:05:11] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:05:11] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.276ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:05:11] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:05:11] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 17:05:11] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:05:11] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:05:11] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:05:11] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:05:11] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:05:11] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.354ms returns 1 (0x1) +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.263ms returns 1 (0x1) +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.287ms returns 1 (0x1) +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 3.331ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 17:05:11] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:11] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:11] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:11] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 17:05:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.629ms returns 0 (0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.265ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:05:12] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:05:12] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:05:12] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 62.862ms +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.148ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Erasing +[2023-Jun-02 17:05:12] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:05:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Erasing flash range [0x00000000-0x000066B4] +[2023-Jun-02 17:05:12] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:05:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.149ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.153ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.265ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.618ms returns 0 (0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.291ms returns 0 (0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.149ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.287ms returns 0 (0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:05:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.280ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.289ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.308ms returns 0 (0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.343ms returns 0 (0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.305ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.263ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.283ms returns 0 (0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:05:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.266ms returns 0 (0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.325ms returns 0 (0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.322ms returns 0 (0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:05:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.288ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.279ms returns 0 (0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.307ms returns 0 (0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.357ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.319ms returns 0 (0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:05:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.288ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.371ms returns 0 (0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.288ms returns 0 (0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.291ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.137ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.326ms returns 0 (0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:05:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.268ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.261ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.315ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.147ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.137ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.327ms returns 0 (0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00005000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.313ms returns 0 (0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.319ms returns 0 (0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:05:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.290ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.149ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.138ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.314ms returns 0 (0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00006000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.290ms returns 0 (0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.266ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ Client] - Command erase_file executed for 871 milliseconds with result 0 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.312ms returns 0 (0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:05:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":784,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 17:05:12] [trace] [ Worker] - Command erase_file executed for 871 milliseconds with result 0 +[2023-Jun-02 17:05:12] [debug] [ Client] - program +[2023-Jun-02 17:05:12] [debug] [ nRF52] - program +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 17:05:12] [debug] [ nRF52] - program_file +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Check program file +[2023-Jun-02 17:05:12] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:05:12] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:12] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:05:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:05:12] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:05:12] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:05:12] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:05:12] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:05:12] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":920,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:05:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:05:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:05:12] [ info] [ nRF52] - Program flash. +[2023-Jun-02 17:05:12] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:05:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_write +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - write +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.271ms returns 0 (0x00000000) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:12] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:12] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x66B4 Bytes, ...) +[2023-Jun-02 17:05:12] [trace] [ JLink] - Data: C0 16 00 20 B5 15 00 00 95 51 00 00 89 15 00 00 ... +[2023-Jun-02 17:05:12] [trace] [ JLink] - CPU_WriteMem(26292 bytes @ 0x00000000) +[2023-Jun-02 17:05:13] [trace] [ Client] - Command program_file executed for 185 milliseconds with result 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 171.501ms returns 0x66B4 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.387ms returns 1 (0x1) +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:05:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.372ms returns 0 (0x00000000) +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:05:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":173,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.019ms +[2023-Jun-02 17:05:13] [trace] [ Worker] - Command program_file executed for 185 milliseconds with result 0 +[2023-Jun-02 17:05:13] [debug] [ Client] - verify +[2023-Jun-02 17:05:13] [debug] [ nRF52] - verify +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:13] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 17:05:13] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 17:05:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:05:13] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:05:13] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.277ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:13] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.348ms returns 1 (0x1) +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:05:13] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:13] [ info] [ nRF52] - Verify +[2023-Jun-02 17:05:13] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 17:05:13] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:05:13] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:05:13] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:05:13] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:05:13] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":1159,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:05:13] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:05:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:05:13] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 17:05:13] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:05:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Just_read +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.297ms returns 0x00 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x66B4 Bytes, ...) +[2023-Jun-02 17:05:13] [trace] [ JLink] - CPU_ReadMem(26304 bytes @ 0x00000000) +[2023-Jun-02 17:05:13] [trace] [ Client] - Command verify_file executed for 185 milliseconds with result 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - -- Updating C cache (26304 bytes @ 0x00000000) +[2023-Jun-02 17:05:13] [trace] [ JLink] - -- Read from C cache (26292 bytes @ 0x00000000) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Data: C0 16 00 20 B5 15 00 00 95 51 00 00 89 15 00 00 ... +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 175.694ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:05:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":176,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.024ms +[2023-Jun-02 17:05:13] [trace] [ Worker] - Command verify_file executed for 185 milliseconds with result 0 +[2023-Jun-02 17:05:13] [debug] [ Client] - sys_reset +[2023-Jun-02 17:05:13] [debug] [ nRF52] - sys_reset +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 17:05:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:05:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:05:13] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:05:13] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:05:13] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:05:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 17:05:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:05:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:05:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:05:13] [trace] [ Client] - Command sys_reset executed for 65 milliseconds with result 0 +[2023-Jun-02 17:05:13] [debug] [ Client] - go +[2023-Jun-02 17:05:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:05:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:05:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:05:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 63.283ms +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 17:05:13] [trace] [ Worker] - Command sys_reset executed for 65 milliseconds with result 0 +[2023-Jun-02 17:05:13] [debug] [ nRF52] - go +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Just_go +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:13] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - go +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 17:05:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:05:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.998ms +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:05:13] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 17:05:13] [debug] [ nRF52] - close +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - close +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:05:13] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:05:13] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:05:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:13] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:24] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 17:05:24] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 17:05:24] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 17:05:24] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 17:05:24] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 17:05:24] [ info] Library loaded, loading member functions. +[2023-Jun-02 17:05:24] [ info] Member functions succesfully loaded. +[2023-Jun-02 17:05:24] [debug] [ Client] - open +[2023-Jun-02 17:05:24] [debug] [ Client] - start +[2023-Jun-02 17:05:24] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence f0e5cbc3-90ac-439b-963a-5ee8748401ad. +[2023-Jun-02 17:05:24] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 17:05:24] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 17:05:24] [debug] [ nRF52] - open +[2023-Jun-02 17:05:24] [debug] [ nRF52] - just_check_family +[2023-Jun-02 17:05:24] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 17:05:24] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 17:05:24] [trace] [ Client] - Command open executed for 2 milliseconds with result 0 +[2023-Jun-02 17:05:24] [debug] [ Client] - config +[2023-Jun-02 17:05:24] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:24] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 17:05:24] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 17:05:24] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 17:05:24] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 17:05:24] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 17:05:24] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 17:05:24] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 17:05:24] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 17:05:24] [debug] [ nRF52] - config +[2023-Jun-02 17:05:24] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 17:05:24] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:24] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 17:05:24] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:24] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 17:05:24] [trace] [ Client] - Command enum_emu_con_info executed for 104 milliseconds with result 0 +[2023-Jun-02 17:05:24] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 17:05:24] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:24] [trace] [ Worker] - Command enum_emu_con_info executed for 104 milliseconds with result 0 +[2023-Jun-02 17:05:24] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 17:05:24] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:24] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 17:05:24] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:24] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 17:05:24] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 17:05:25] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 17:05:25] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 17:05:25] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 17:05:25] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 17:05:25] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 17:05:25] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 17:05:25] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 17:05:25] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 17:05:25] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 17:05:25] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 17:05:25] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 17:05:25] [trace] [ Client] - Command connect_to_emu_with_snr executed for 337 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 17:05:25] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ Client] - read_device_info +[2023-Jun-02 17:05:25] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 29.384ms returns "O.K." +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.003ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.424ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 17:05:25] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.050ms +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:05:25] [debug] [ nRF52] - read_device_family +[2023-Jun-02 17:05:25] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 337 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:05:25] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.353ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 17:05:25] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.248ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 17:05:25] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 17:05:25] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 17:05:25] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 17:05:25] [trace] [ JLink] - InitTarget() end - Took 1.76ms +[2023-Jun-02 17:05:25] [trace] [ JLink] - InitTarget() end - Took 1.76ms +[2023-Jun-02 17:05:25] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 17:05:25] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 17:05:25] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 17:05:25] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 17:05:25] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 17:05:25] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 17:05:25] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 17:05:25] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 17:05:25] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 17:05:25] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 17:05:25] [trace] [ Client] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 17:05:25] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 17:05:25] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 17:05:25] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 17:05:25] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 17:05:25] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 17:05:25] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 17:05:25] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 17:05:25] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 17:05:25] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 17:05:25] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 17:05:25] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 17:05:25] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 17:05:25] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 17:05:25] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 12.909ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0xE0000FF +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 17:05:25] [trace] [ Worker] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 17:05:25] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:05:25] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:05:25] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:05:25] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:05:25] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:05:25] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:05:25] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:05:25] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:05:25] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:05:25] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:05:25] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:05:25] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:05:25] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:25] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.026ms +[2023-Jun-02 17:05:25] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:25] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.013ms +[2023-Jun-02 17:05:25] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:05:25] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:05:25] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:05:25] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:05:25] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:05:25] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:05:25] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:05:25] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:05:25] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:05:25] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:05:25] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:05:25] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:05:25] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:05:25] [debug] [ Client] - erase +[2023-Jun-02 17:05:25] [debug] [ nRF52] - erase_file +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.007ms returns 0x01 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - erase +[2023-Jun-02 17:05:25] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:05:25] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.268ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:05:25] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 17:05:25] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:05:25] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:05:25] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:05:25] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:05:25] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:05:25] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.305ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.368ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 3.256ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.553ms returns 0 (0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.290ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.301ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.264ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.289ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:05:25] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:05:25] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:05:25] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 64.018ms +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:25] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Erasing +[2023-Jun-02 17:05:25] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:05:25] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Erasing flash range [0x00000000-0x000066B4] +[2023-Jun-02 17:05:25] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:05:25] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.371ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.671ms returns 0 (0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.369ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.346ms returns 0 (0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.350ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.363ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.327ms returns 0 (0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.380ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:05:25] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.308ms returns 0 (0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.416ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.330ms returns 0 (0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.380ms returns 0 (0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:05:25] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.327ms returns 0 (0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.266ms returns 0 (0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.364ms returns 0 (0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:05:25] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.305ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.369ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.291ms returns 0 (0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.382ms returns 0 (0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.352ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.367ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.306ms returns 0 (0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:05:25] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.313ms returns 0 (0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.309ms returns 0 (0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.320ms returns 0 (0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:05:25] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.369ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.353ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.365ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.303ms returns 0 (0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00005000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.302ms returns 0 (0x00000000) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.348ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.366ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.400ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:25] [trace] [ JLink] - - 0.391ms returns 1 (0x1) +[2023-Jun-02 17:05:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.372ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.352ms returns 0 (0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.367ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:05:26] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.305ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.298ms returns 0 (0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00006000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.286ms returns 0 (0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.361ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ Client] - Command erase_file executed for 880 milliseconds with result 0 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.328ms returns 0 (0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:05:26] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":791,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 17:05:26] [trace] [ Worker] - Command erase_file executed for 880 milliseconds with result 0 +[2023-Jun-02 17:05:26] [debug] [ Client] - program +[2023-Jun-02 17:05:26] [debug] [ nRF52] - program +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:26] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 17:05:26] [debug] [ nRF52] - program_file +[2023-Jun-02 17:05:26] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 17:05:26] [ info] [ nRF52] - Check program file +[2023-Jun-02 17:05:26] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:05:26] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.260ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.291ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:26] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.252ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.269ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.252ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:05:26] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:05:26] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:05:26] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:05:26] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:05:26] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:05:26] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":931,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:05:26] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.264ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.361ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.363ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:05:26] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:05:26] [ info] [ nRF52] - Program flash. +[2023-Jun-02 17:05:26] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:05:26] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_write +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - write +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.330ms returns 0 (0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.387ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x66B4 Bytes, ...) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: C0 16 00 20 B5 15 00 00 95 51 00 00 89 15 00 00 ... +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_WriteMem(26292 bytes @ 0x00000000) +[2023-Jun-02 17:05:26] [trace] [ Client] - Command program_file executed for 187 milliseconds with result 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 171.601ms returns 0x66B4 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.009ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.359ms returns 0 (0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.350ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:05:26] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":174,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.022ms +[2023-Jun-02 17:05:26] [trace] [ Worker] - Command program_file executed for 187 milliseconds with result 0 +[2023-Jun-02 17:05:26] [debug] [ Client] - verify +[2023-Jun-02 17:05:26] [debug] [ nRF52] - verify +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.004ms returns 0x01 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:26] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 17:05:26] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 17:05:26] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:05:26] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:05:26] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:26] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.428ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:05:26] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.295ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.304ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.279ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:05:26] [ info] [ nRF52] - Verify +[2023-Jun-02 17:05:26] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 17:05:26] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:05:26] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:05:26] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:05:26] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:05:26] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":1173,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:05:26] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:05:26] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:05:26] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 17:05:26] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:05:26] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_read +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.326ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x66B4 Bytes, ...) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(26304 bytes @ 0x00000000) +[2023-Jun-02 17:05:26] [trace] [ Client] - Command verify_file executed for 187 milliseconds with result 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - -- Updating C cache (26304 bytes @ 0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - -- Read from C cache (26292 bytes @ 0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Data: C0 16 00 20 B5 15 00 00 95 51 00 00 89 15 00 00 ... +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 176.036ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:05:26] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":176,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.037ms +[2023-Jun-02 17:05:26] [trace] [ Worker] - Command verify_file executed for 187 milliseconds with result 0 +[2023-Jun-02 17:05:26] [debug] [ Client] - sys_reset +[2023-Jun-02 17:05:26] [debug] [ nRF52] - sys_reset +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.003ms returns TRUE +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.004ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:05:26] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:05:26] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:05:26] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:05:26] [trace] [ Client] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 17:05:26] [debug] [ Client] - go +[2023-Jun-02 17:05:26] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 64.116ms +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 17:05:26] [trace] [ Worker] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 17:05:26] [debug] [ nRF52] - go +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_go +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:05:26] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - go +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.003ms returns TRUE +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 1.096ms +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.004ms +[2023-Jun-02 17:05:26] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 17:05:26] [debug] [ nRF52] - close +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - close +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:05:26] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:05:26] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:05:26] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:05:26] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:11] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 17:07:11] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 17:07:11] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 17:07:11] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 17:07:11] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 17:07:11] [ info] Library loaded, loading member functions. +[2023-Jun-02 17:07:11] [ info] Member functions succesfully loaded. +[2023-Jun-02 17:07:11] [debug] [ Client] - open +[2023-Jun-02 17:07:11] [debug] [ Client] - start +[2023-Jun-02 17:07:11] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence 30b9e100-d054-432a-a5e8-e21f8f589008. +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 17:07:11] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 17:07:11] [debug] [ nRF52] - open +[2023-Jun-02 17:07:11] [debug] [ nRF52] - just_check_family +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 17:07:11] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ Client] - config +[2023-Jun-02 17:07:11] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 17:07:11] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 17:07:11] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 17:07:11] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 17:07:11] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 17:07:11] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - config +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 17:07:11] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 17:07:11] [trace] [ Client] - Command enum_emu_con_info executed for 102 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:07:11] [trace] [ Worker] - Command enum_emu_con_info executed for 102 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 17:07:11] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 17:07:11] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 17:07:11] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 17:07:11] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 17:07:11] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 17:07:11] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 17:07:11] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 17:07:11] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 17:07:11] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 17:07:11] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 17:07:11] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 17:07:11] [trace] [ Client] - Command connect_to_emu_with_snr executed for 341 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 17:07:11] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ Client] - read_device_info +[2023-Jun-02 17:07:11] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 27.081ms returns "O.K." +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.003ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.297ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 17:07:11] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.056ms +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:07:11] [debug] [ nRF52] - read_device_family +[2023-Jun-02 17:07:11] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 340 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:07:11] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.134ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.320ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 17:07:11] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.253ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 17:07:11] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 17:07:11] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 17:07:11] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 17:07:11] [trace] [ JLink] - InitTarget() end - Took 1.60ms +[2023-Jun-02 17:07:11] [trace] [ JLink] - InitTarget() end - Took 1.60ms +[2023-Jun-02 17:07:11] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 17:07:11] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 17:07:11] [trace] [ Client] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 17:07:11] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 17:07:11] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 17:07:11] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 17:07:11] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 17:07:11] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 17:07:11] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 17:07:11] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 17:07:11] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 17:07:11] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 17:07:11] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 17:07:11] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 17:07:11] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 17:07:11] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:07:11] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 17:07:11] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 17:07:11] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 17:07:11] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 17:07:11] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 17:07:11] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 17:07:11] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 17:07:11] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 17:07:11] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 17:07:11] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 17:07:11] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 17:07:11] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 17:07:11] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 17:07:11] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 17:07:11] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 17:07:11] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 12.438ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0xE0000FF +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 17:07:11] [trace] [ Worker] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ Client] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 17:07:11] [trace] [ Client] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:07:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:07:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:07:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:07:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:07:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:07:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:07:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:07:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:07:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:07:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:07:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:07:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:11] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.026ms +[2023-Jun-02 17:07:11] [trace] [ Worker] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:11] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.268ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 17:07:11] [trace] [ Worker] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:07:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:07:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:07:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:07:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:07:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:07:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:07:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:07:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:07:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:07:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:07:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:07:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:07:11] [debug] [ Client] - erase +[2023-Jun-02 17:07:11] [debug] [ nRF52] - erase_file +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.004ms returns 0x01 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - erase +[2023-Jun-02 17:07:11] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:07:11] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:07:11] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:07:11] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 17:07:11] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:07:11] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:07:11] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:07:11] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:07:11] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:07:11] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 3.238ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.619ms returns 0 (0x00000000) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:07:11] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.253ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:07:11] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 17:07:11] [trace] [ JLink] - - 0.003ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:11] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:07:11] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:07:11] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:07:11] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:07:11] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:07:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 63.730ms +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:07:12] [ info] [ nRF52] - Erasing +[2023-Jun-02 17:07:12] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:07:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:07:12] [ info] [ nRF52] - Erasing flash range [0x00000000-0x000066D8] +[2023-Jun-02 17:07:12] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:07:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.271ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.267ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.289ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.621ms returns 0 (0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.305ms returns 0 (0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:07:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.265ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.336ms returns 0 (0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.320ms returns 0 (0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.140ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.326ms returns 0 (0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:07:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.267ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.304ms returns 0 (0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.266ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.353ms returns 0 (0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.325ms returns 0 (0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.266ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:07:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.287ms returns 0 (0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.307ms returns 0 (0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.289ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.289ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.333ms returns 0 (0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.289ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:07:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.289ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.360ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.013ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.050ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.348ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.011ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.009ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.336ms returns 0 (0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.297ms returns 0 (0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.291ms returns 0 (0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:07:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.349ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.305ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.272ms returns 0 (0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00005000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.334ms returns 0 (0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.427ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.391ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.361ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.286ms returns 0 (0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:07:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.286ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00006000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.297ms returns 0 (0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.357ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ Client] - Command erase_file executed for 873 milliseconds with result 0 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.403ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.328ms returns 0 (0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:07:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":786,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.019ms +[2023-Jun-02 17:07:12] [trace] [ Worker] - Command erase_file executed for 873 milliseconds with result 0 +[2023-Jun-02 17:07:12] [debug] [ Client] - program +[2023-Jun-02 17:07:12] [debug] [ nRF52] - program +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:07:12] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 17:07:12] [debug] [ nRF52] - program_file +[2023-Jun-02 17:07:12] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 17:07:12] [ info] [ nRF52] - Check program file +[2023-Jun-02 17:07:12] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:07:12] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.267ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:07:12] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:07:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:07:12] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:07:12] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:07:12] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:07:12] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:07:12] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":923,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:07:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.141ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:07:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:07:12] [ info] [ nRF52] - Program flash. +[2023-Jun-02 17:07:12] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:07:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_write +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - write +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.324ms returns 0 (0x00000000) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:12] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:12] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x66D8 Bytes, ...) +[2023-Jun-02 17:07:12] [trace] [ JLink] - Data: C0 16 00 20 C1 15 00 00 A1 51 00 00 95 15 00 00 ... +[2023-Jun-02 17:07:12] [trace] [ JLink] - CPU_WriteMem(26328 bytes @ 0x00000000) +[2023-Jun-02 17:07:13] [trace] [ Client] - Command program_file executed for 185 milliseconds with result 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 171.772ms returns 0x66D8 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.286ms returns 1 (0x1) +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:07:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.285ms returns 0 (0x00000000) +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:07:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:07:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":173,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.017ms +[2023-Jun-02 17:07:13] [trace] [ Worker] - Command program_file executed for 185 milliseconds with result 0 +[2023-Jun-02 17:07:13] [debug] [ Client] - verify +[2023-Jun-02 17:07:13] [debug] [ nRF52] - verify +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:07:13] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 17:07:13] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 17:07:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:07:13] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:07:13] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:07:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:07:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:07:13] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.016ms returns 0x00 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:07:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.375ms returns 1 (0x1) +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:07:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.375ms returns 1 (0x1) +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:07:13] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:07:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:07:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:07:13] [ info] [ nRF52] - Verify +[2023-Jun-02 17:07:13] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 17:07:13] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:07:13] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:07:13] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:07:13] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:07:13] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":1163,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:07:13] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:07:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:07:13] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 17:07:13] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:07:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Just_read +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.310ms returns 0x00 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x66D8 Bytes, ...) +[2023-Jun-02 17:07:13] [trace] [ JLink] - CPU_ReadMem(26368 bytes @ 0x00000000) +[2023-Jun-02 17:07:13] [trace] [ Client] - Command verify_file executed for 186 milliseconds with result 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - -- Updating C cache (26368 bytes @ 0x00000000) +[2023-Jun-02 17:07:13] [trace] [ JLink] - -- Read from C cache (26328 bytes @ 0x00000000) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Data: C0 16 00 20 C1 15 00 00 A1 51 00 00 95 15 00 00 ... +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 176.599ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:07:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":176,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.028ms +[2023-Jun-02 17:07:13] [trace] [ Worker] - Command verify_file executed for 186 milliseconds with result 0 +[2023-Jun-02 17:07:13] [debug] [ Client] - sys_reset +[2023-Jun-02 17:07:13] [debug] [ nRF52] - sys_reset +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.003ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 17:07:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:07:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:07:13] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:07:13] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:07:13] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:07:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 17:07:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:07:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:07:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:07:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:07:13] [trace] [ Client] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 17:07:13] [debug] [ Client] - go +[2023-Jun-02 17:07:13] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:07:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:07:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 63.835ms +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:07:13] [trace] [ Worker] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 17:07:13] [debug] [ nRF52] - go +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Just_go +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:07:13] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.137ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - go +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 17:07:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:07:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 1.042ms +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:07:13] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 17:07:13] [debug] [ nRF52] - close +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - close +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:07:13] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:07:13] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:07:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:07:13] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:23] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 17:13:23] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 17:13:23] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 17:13:23] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 17:13:23] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 17:13:23] [ info] Library loaded, loading member functions. +[2023-Jun-02 17:13:23] [ info] Member functions succesfully loaded. +[2023-Jun-02 17:13:23] [debug] [ Client] - open +[2023-Jun-02 17:13:23] [debug] [ Client] - start +[2023-Jun-02 17:13:23] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence e2b22eda-d3de-4ac7-9394-e0e2b2e6d30d. +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 17:13:23] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 17:13:23] [debug] [ nRF52] - open +[2023-Jun-02 17:13:23] [debug] [ nRF52] - just_check_family +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 17:13:23] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ Client] - config +[2023-Jun-02 17:13:23] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 17:13:23] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 17:13:23] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 17:13:23] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 17:13:23] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 17:13:23] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - config +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 17:13:23] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 17:13:23] [trace] [ Client] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:23] [trace] [ Worker] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 17:13:23] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 17:13:23] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 17:13:23] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 17:13:23] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 17:13:23] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 17:13:23] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 17:13:23] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 17:13:23] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 17:13:23] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 17:13:23] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 17:13:23] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 17:13:23] [trace] [ Client] - Command connect_to_emu_with_snr executed for 348 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 17:13:23] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ Client] - read_device_info +[2023-Jun-02 17:13:23] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 30.231ms returns "O.K." +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.004ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.383ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 17:13:23] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.004ms +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.049ms +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.002ms returns 2000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 17:13:23] [debug] [ nRF52] - read_device_family +[2023-Jun-02 17:13:23] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 347 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:13:23] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.133ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.356ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.002ms returns FALSE +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 17:13:23] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.283ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 17:13:23] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 17:13:23] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 17:13:23] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 17:13:23] [trace] [ JLink] - InitTarget() end - Took 1.71ms +[2023-Jun-02 17:13:23] [trace] [ JLink] - InitTarget() end - Took 1.71ms +[2023-Jun-02 17:13:23] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 17:13:23] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 17:13:23] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 17:13:23] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 17:13:23] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 17:13:23] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 17:13:23] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 17:13:23] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 17:13:23] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 17:13:23] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 17:13:23] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 17:13:23] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 17:13:23] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 17:13:23] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 17:13:23] [trace] [ Client] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 17:13:23] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 17:13:23] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 17:13:23] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 17:13:23] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 17:13:23] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 17:13:23] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 17:13:23] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 17:13:23] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 17:13:23] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 17:13:23] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 17:13:23] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 17:13:23] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 17:13:23] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 17:13:23] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 17:13:23] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 17:13:23] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 13.123ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0xE0000FF +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.366ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 17:13:23] [trace] [ Worker] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 17:13:23] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:13:23] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:13:23] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:13:23] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:13:23] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:13:23] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:13:23] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:13:23] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:13:23] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:13:23] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:13:23] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:13:23] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:13:23] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:23] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.277ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.372ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.024ms +[2023-Jun-02 17:13:23] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:23] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.013ms +[2023-Jun-02 17:13:23] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:13:23] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:13:23] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:13:23] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:13:23] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:13:23] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:13:23] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:13:23] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:13:23] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:13:23] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:13:23] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:13:23] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:13:23] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:23] [debug] [ Client] - erase +[2023-Jun-02 17:13:23] [debug] [ nRF52] - erase_file +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - erase +[2023-Jun-02 17:13:23] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:13:23] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.253ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.353ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:13:23] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:13:23] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 17:13:23] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:13:23] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:13:23] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:13:23] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:13:23] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:13:23] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.359ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.352ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.397ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 3.246ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.394ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.629ms returns 0 (0x00000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.378ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.287ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":11,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:13:23] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.272ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.298ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.289ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.272ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:13:23] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:13:23] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:13:23] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 64.747ms +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.318ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.354ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.304ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.305ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:23] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:13:23] [ info] [ nRF52] - Erasing +[2023-Jun-02 17:13:23] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:13:23] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:13:23] [ info] [ nRF52] - Erasing flash range [0x00000000-0x000066C8] +[2023-Jun-02 17:13:23] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:13:23] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.281ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.273ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.267ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.289ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.351ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.350ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.358ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.309ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.305ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.361ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.275ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.711ms returns 0 (0x00000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.288ms returns 0 (0x00000000) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.360ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:23] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:23] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:23] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:23] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:13:23] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.348ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.475ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.299ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.252ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.400ms returns 0 (0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.351ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.387ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:13:24] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.268ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.269ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.309ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.261ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.290ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.388ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.352ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.394ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.265ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.387ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.336ms returns 0 (0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.291ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.324ms returns 0 (0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.406ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.404ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.404ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.330ms returns 0 (0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.378ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:13:24] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.299ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.310ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.267ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.353ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.263ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.353ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.376ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.271ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.269ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.272ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.342ms returns 0 (0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.315ms returns 0 (0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.438ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.482ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.368ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.292ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.401ms returns 0 (0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.026ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.379ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.013ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.357ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:13:24] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.253ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.268ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.350ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.367ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.352ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.357ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.388ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.265ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.273ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.267ms returns 0 (0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.143ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.308ms returns 0 (0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.401ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.356ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.463ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.447ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.332ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.265ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.297ms returns 0 (0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.412ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.437ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:13:24] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.321ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.355ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.324ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.336ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.315ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.271ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.275ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.013ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.352ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.387ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.374ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.376ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.349ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.269ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.264ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.284ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.314ms returns 0 (0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.372ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.390ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.394ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.327ms returns 0 (0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.367ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:13:24] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.352ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.401ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.257ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.367ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.266ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.267ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.394ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.309ms returns 0 (0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00005000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.406ms returns 0 (0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.405ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.376ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.397ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.372ms returns 0 (0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.369ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:13:24] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.330ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.314ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.305ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.355ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.352ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.254ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.357ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.344ms returns 0 (0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00006000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.285ms returns 0 (0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.363ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ Client] - Command erase_file executed for 893 milliseconds with result 0 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.349ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.436ms returns 0 (0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.348ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:13:24] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":801,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.056ms +[2023-Jun-02 17:13:24] [trace] [ Worker] - Command erase_file executed for 893 milliseconds with result 0 +[2023-Jun-02 17:13:24] [debug] [ Client] - program +[2023-Jun-02 17:13:24] [debug] [ nRF52] - program +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.007ms returns 0x01 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:24] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 17:13:24] [debug] [ nRF52] - program_file +[2023-Jun-02 17:13:24] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 17:13:24] [ info] [ nRF52] - Check program file +[2023-Jun-02 17:13:24] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:13:24] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:24] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.287ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:13:24] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:13:24] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:13:24] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:13:24] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:13:24] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:13:24] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":943,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:13:24] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.391ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.305ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.366ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.305ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.424ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.264ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:13:24] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:13:24] [ info] [ nRF52] - Program flash. +[2023-Jun-02 17:13:24] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:13:24] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_write +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - write +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.140ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.357ms returns 0 (0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x66C8 Bytes, ...) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: C0 16 00 20 C1 15 00 00 D1 51 00 00 95 15 00 00 ... +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_WriteMem(26312 bytes @ 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ Client] - Command program_file executed for 187 milliseconds with result 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 171.820ms returns 0x66C8 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.339ms returns 0 (0x00000000) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:13:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:24] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:13:24] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":174,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:13:24] [trace] [ JLink] - - 0.017ms +[2023-Jun-02 17:13:24] [trace] [ Worker] - Command program_file executed for 187 milliseconds with result 0 +[2023-Jun-02 17:13:25] [debug] [ Client] - verify +[2023-Jun-02 17:13:25] [debug] [ nRF52] - verify +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:25] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 17:13:25] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 17:13:25] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 17:13:25] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:13:25] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:13:25] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:13:25] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.253ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.274ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.286ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.253ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.280ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:25] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:25] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:13:25] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.263ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:25] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:25] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:13:25] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:13:25] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.379ms returns 1 (0x1) +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.353ms returns 1 (0x1) +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:25] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:25] [ info] [ nRF52] - Verify +[2023-Jun-02 17:13:25] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 17:13:25] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:13:25] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:13:25] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:13:25] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:13:25] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:13:25] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":1184,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:13:25] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:13:25] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:13:25] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 17:13:25] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:13:25] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:13:25] [debug] [ nRF52] - Just_read +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.309ms returns 0x00 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x66C8 Bytes, ...) +[2023-Jun-02 17:13:25] [trace] [ JLink] - CPU_ReadMem(26368 bytes @ 0x00000000) +[2023-Jun-02 17:13:25] [trace] [ Client] - Command verify_file executed for 187 milliseconds with result 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - -- Updating C cache (26368 bytes @ 0x00000000) +[2023-Jun-02 17:13:25] [trace] [ JLink] - -- Read from C cache (26312 bytes @ 0x00000000) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Data: C0 16 00 20 C1 15 00 00 D1 51 00 00 95 15 00 00 ... +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 176.198ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:13:25] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":176,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.026ms +[2023-Jun-02 17:13:25] [trace] [ Worker] - Command verify_file executed for 187 milliseconds with result 0 +[2023-Jun-02 17:13:25] [debug] [ Client] - sys_reset +[2023-Jun-02 17:13:25] [debug] [ nRF52] - sys_reset +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.004ms returns 0x01 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:25] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 17:13:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.276ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 17:13:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:13:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:13:25] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:13:25] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:13:25] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:13:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 17:13:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:13:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:13:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:13:25] [trace] [ Client] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 17:13:25] [debug] [ Client] - go +[2023-Jun-02 17:13:25] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:13:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:13:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:13:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 64.184ms +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:13:25] [trace] [ Worker] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 17:13:25] [debug] [ nRF52] - go +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:25] [debug] [ nRF52] - Just_go +[2023-Jun-02 17:13:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.139ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.273ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.139ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.263ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - go +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 17:13:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:13:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 1.093ms +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:13:25] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 17:13:25] [debug] [ nRF52] - close +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - close +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:13:25] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:13:25] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:13:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:33] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 17:13:33] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 17:13:33] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 17:13:33] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 17:13:33] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 17:13:33] [ info] Library loaded, loading member functions. +[2023-Jun-02 17:13:33] [ info] Member functions succesfully loaded. +[2023-Jun-02 17:13:33] [debug] [ Client] - open +[2023-Jun-02 17:13:33] [debug] [ Client] - start +[2023-Jun-02 17:13:33] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence 342dc4ed-b968-45b9-bccd-8153a78e3901. +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 17:13:33] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 17:13:33] [debug] [ nRF52] - open +[2023-Jun-02 17:13:33] [debug] [ nRF52] - just_check_family +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 17:13:33] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ Client] - config +[2023-Jun-02 17:13:33] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 17:13:33] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 17:13:33] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 17:13:33] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 17:13:33] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 17:13:33] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - config +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 17:13:33] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 17:13:33] [trace] [ Client] - Command enum_emu_con_info executed for 102 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:33] [trace] [ Worker] - Command enum_emu_con_info executed for 102 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 17:13:33] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 17:13:33] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 17:13:33] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 17:13:33] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 17:13:33] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 17:13:33] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 17:13:33] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 17:13:33] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 17:13:33] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 17:13:33] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 17:13:33] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 17:13:33] [trace] [ Client] - Command connect_to_emu_with_snr executed for 341 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 17:13:33] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ Client] - read_device_info +[2023-Jun-02 17:13:33] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 27.359ms returns "O.K." +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.000ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.294ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 17:13:33] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.052ms +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:13:33] [debug] [ nRF52] - read_device_family +[2023-Jun-02 17:13:33] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 341 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:13:33] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.335ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 17:13:33] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.209ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 17:13:33] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 17:13:33] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 17:13:33] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 17:13:33] [trace] [ JLink] - InitTarget() end - Took 1.76ms +[2023-Jun-02 17:13:33] [trace] [ JLink] - InitTarget() end - Took 1.76ms +[2023-Jun-02 17:13:33] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 17:13:33] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 17:13:33] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 17:13:33] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 17:13:33] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 17:13:33] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 17:13:33] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 17:13:33] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 17:13:33] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 17:13:33] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 17:13:33] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 17:13:33] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 17:13:33] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 17:13:33] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 17:13:33] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 17:13:33] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 17:13:33] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 17:13:33] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 17:13:33] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 17:13:33] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 17:13:33] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 17:13:33] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 17:13:33] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 17:13:33] [trace] [ Client] - Command read_device_info executed for 18 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 17:13:33] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 17:13:33] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 17:13:33] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 13.999ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0xE0000FF +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 17:13:33] [trace] [ Worker] - Command read_device_info executed for 18 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:33] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.252ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.316ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.021ms +[2023-Jun-02 17:13:33] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:33] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:13:33] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:13:33] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:13:33] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:13:33] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:13:33] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:13:33] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:13:33] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:13:33] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:13:33] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:13:33] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:13:33] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:13:33] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.013ms +[2023-Jun-02 17:13:33] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:13:33] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:13:33] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:13:33] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:13:33] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:13:33] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:13:33] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:13:33] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:13:33] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:13:33] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:13:33] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:13:33] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:13:33] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:13:33] [debug] [ Client] - erase +[2023-Jun-02 17:13:33] [debug] [ nRF52] - erase_file +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - erase +[2023-Jun-02 17:13:33] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:13:33] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.306ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.253ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.370ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.354ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:13:33] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:13:33] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 17:13:33] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:13:33] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:13:33] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:13:33] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:13:33] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:13:33] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.348ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.350ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.266ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 3.405ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.369ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.353ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.647ms returns 0 (0x00000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.264ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":11,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:13:33] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.321ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.365ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:13:33] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:13:33] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:13:33] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 64.355ms +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.326ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.260ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.263ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.303ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.273ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:33] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:13:33] [ info] [ nRF52] - Erasing +[2023-Jun-02 17:13:33] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:13:33] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:13:33] [ info] [ nRF52] - Erasing flash range [0x00000000-0x000066C8] +[2023-Jun-02 17:13:33] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:13:33] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.300ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.273ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.267ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.281ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.269ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.267ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.362ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.263ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.266ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.357ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.298ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.384ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.670ms returns 0 (0x00000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.261ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.282ms returns 0 (0x00000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.373ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.361ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.357ms returns 0 (0x00000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.351ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.348ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:13:33] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.282ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.391ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.266ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.376ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.252ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.336ms returns 0 (0x00000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.316ms returns 0 (0x00000000) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:33] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:33] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:33] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:33] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 17:13:33] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.356ms returns 0 (0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:13:34] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.287ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.370ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.143ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.292ms returns 0 (0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.368ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.287ms returns 0 (0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.287ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.377ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.330ms returns 0 (0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.267ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:13:34] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.286ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.287ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.365ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.266ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.372ms returns 0 (0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.351ms returns 0 (0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.286ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.363ms returns 0 (0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:13:34] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.272ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.257ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.367ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.267ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.153ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.364ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.363ms returns 0 (0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.347ms returns 0 (0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.365ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.286ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.372ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.153ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.334ms returns 0 (0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:13:34] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.265ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.291ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.367ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.354ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.424ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.295ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.364ms returns 0 (0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00005000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.326ms returns 0 (0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.358ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.288ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.356ms returns 0 (0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:13:34] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.364ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.364ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.276ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.255ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.264ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.275ms returns 0 (0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00006000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.336ms returns 0 (0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.291ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.348ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ Client] - Command erase_file executed for 884 milliseconds with result 0 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.355ms returns 0 (0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:13:34] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":793,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.018ms +[2023-Jun-02 17:13:34] [trace] [ Worker] - Command erase_file executed for 884 milliseconds with result 0 +[2023-Jun-02 17:13:34] [debug] [ Client] - program +[2023-Jun-02 17:13:34] [debug] [ nRF52] - program +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:34] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 17:13:34] [debug] [ nRF52] - program_file +[2023-Jun-02 17:13:34] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 17:13:34] [ info] [ nRF52] - Check program file +[2023-Jun-02 17:13:34] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:13:34] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.144ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:34] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.277ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:13:34] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:13:34] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:13:34] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:13:34] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:13:34] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:13:34] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":934,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:13:34] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.352ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.288ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:13:34] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:13:34] [ info] [ nRF52] - Program flash. +[2023-Jun-02 17:13:34] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:13:34] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_write +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - write +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.310ms returns 0 (0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x66C8 Bytes, ...) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: C0 16 00 20 C1 15 00 00 D1 51 00 00 95 15 00 00 ... +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_WriteMem(26312 bytes @ 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ Client] - Command program_file executed for 187 milliseconds with result 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 171.680ms returns 0x66C8 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.362ms returns 0 (0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:13:34] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":174,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 17:13:34] [trace] [ Worker] - Command program_file executed for 187 milliseconds with result 0 +[2023-Jun-02 17:13:34] [debug] [ Client] - verify +[2023-Jun-02 17:13:34] [debug] [ nRF52] - verify +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.007ms returns 0x01 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:34] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 17:13:34] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 17:13:34] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:13:34] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:13:34] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.261ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.265ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.009ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.366ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:34] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.262ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.268ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.271ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.280ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.262ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:13:34] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.267ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.314ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:13:34] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:13:34] [ info] [ nRF52] - Verify +[2023-Jun-02 17:13:34] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 17:13:34] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:13:34] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:13:34] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:13:34] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:13:34] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":1175,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:13:34] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:13:34] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:13:34] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 17:13:34] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:13:34] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:13:34] [debug] [ nRF52] - Just_read +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - read +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.283ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 17:13:34] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:13:34] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:34] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x66C8 Bytes, ...) +[2023-Jun-02 17:13:34] [trace] [ JLink] - CPU_ReadMem(26368 bytes @ 0x00000000) +[2023-Jun-02 17:13:35] [trace] [ Client] - Command verify_file executed for 188 milliseconds with result 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - -- Updating C cache (26368 bytes @ 0x00000000) +[2023-Jun-02 17:13:35] [trace] [ JLink] - -- Read from C cache (26312 bytes @ 0x00000000) +[2023-Jun-02 17:13:35] [trace] [ JLink] - Data: C0 16 00 20 C1 15 00 00 D1 51 00 00 95 15 00 00 ... +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 176.224ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:13:35] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":176,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.038ms +[2023-Jun-02 17:13:35] [trace] [ Worker] - Command verify_file executed for 188 milliseconds with result 0 +[2023-Jun-02 17:13:35] [debug] [ Client] - sys_reset +[2023-Jun-02 17:13:35] [debug] [ nRF52] - sys_reset +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.004ms returns 0x01 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:35] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 17:13:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:13:35] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.272ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.254ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.266ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.003ms returns TRUE +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.003ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 17:13:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:13:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:13:35] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:13:35] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:13:35] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:13:35] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:13:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 17:13:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:13:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:13:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:13:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:13:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:13:35] [trace] [ Client] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 17:13:35] [debug] [ Client] - go +[2023-Jun-02 17:13:35] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:13:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 63.945ms +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:13:35] [trace] [ Worker] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 17:13:35] [debug] [ nRF52] - go +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:35] [debug] [ nRF52] - Just_go +[2023-Jun-02 17:13:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:13:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.313ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:13:35] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:13:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - go +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 17:13:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:13:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 1.083ms +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:13:35] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 17:13:35] [debug] [ nRF52] - close +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - close +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:13:35] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:13:35] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:13:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:13:35] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:14:03] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 17:14:03] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 17:14:03] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 17:14:03] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 17:14:03] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 17:14:03] [ info] Library loaded, loading member functions. +[2023-Jun-02 17:14:03] [ info] Member functions succesfully loaded. +[2023-Jun-02 17:14:03] [debug] [ Client] - open +[2023-Jun-02 17:14:03] [debug] [ Client] - start +[2023-Jun-02 17:14:03] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence 9c0bb65e-bdd6-48e4-8f15-942800847825. +[2023-Jun-02 17:14:03] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 17:14:03] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 17:14:03] [debug] [ nRF52] - open +[2023-Jun-02 17:14:03] [debug] [ nRF52] - just_check_family +[2023-Jun-02 17:14:03] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 17:14:03] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 17:14:03] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 17:14:03] [debug] [ Client] - config +[2023-Jun-02 17:14:03] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:03] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 17:14:03] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 17:14:03] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 17:14:03] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 17:14:03] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 17:14:03] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 17:14:03] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 17:14:03] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 17:14:03] [debug] [ nRF52] - config +[2023-Jun-02 17:14:03] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 17:14:03] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:03] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 17:14:03] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:14:03] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 17:14:03] [trace] [ Client] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 17:14:03] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 17:14:03] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:14:03] [trace] [ Worker] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 17:14:03] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 17:14:03] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:14:03] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 17:14:03] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:14:03] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 17:14:03] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 17:14:03] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 17:14:03] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 17:14:03] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 17:14:03] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 17:14:03] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 17:14:03] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 17:14:03] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 17:14:03] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 17:14:03] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 17:14:03] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 17:14:03] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 17:14:03] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 17:14:03] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 17:14:03] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 17:14:03] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 17:14:03] [trace] [ Client] - Command connect_to_emu_with_snr executed for 341 milliseconds with result 0 +[2023-Jun-02 17:14:03] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 17:14:03] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:03] [debug] [ Client] - read_device_info +[2023-Jun-02 17:14:03] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 17:14:03] [trace] [ JLink] - - 27.528ms returns "O.K." +[2023-Jun-02 17:14:03] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:03] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.002ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.519ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 17:14:04] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.005ms +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.047ms +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.002ms returns 2000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.002ms returns 1050282167 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 17:14:04] [debug] [ nRF52] - read_device_family +[2023-Jun-02 17:14:04] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 341 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:14:04] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.354ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.282ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.274ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.002ms returns FALSE +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 17:14:04] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.298ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 17:14:04] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 17:14:04] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 17:14:04] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 17:14:04] [trace] [ JLink] - InitTarget() end - Took 1.80ms +[2023-Jun-02 17:14:04] [trace] [ JLink] - InitTarget() end - Took 1.80ms +[2023-Jun-02 17:14:04] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 17:14:04] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 17:14:04] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 17:14:04] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 17:14:04] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 17:14:04] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 17:14:04] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 17:14:04] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 17:14:04] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 17:14:04] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 17:14:04] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 17:14:04] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 17:14:04] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 17:14:04] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 17:14:04] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:14:04] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 17:14:04] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 17:14:04] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 17:14:04] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 17:14:04] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 17:14:04] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 17:14:04] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 17:14:04] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 17:14:04] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 17:14:04] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 17:14:04] [trace] [ Client] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 17:14:04] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 17:14:04] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 17:14:04] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 17:14:04] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 17:14:04] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 17:14:04] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 17:14:04] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 13.434ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0xE0000FF +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.355ms returns 1 (0x1) +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 17:14:04] [trace] [ Worker] - Command read_device_info executed for 17 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:14:04] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.361ms returns 1 (0x1) +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.024ms +[2023-Jun-02 17:14:04] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.260ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:14:04] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:14:04] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:14:04] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:14:04] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:14:04] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:14:04] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:14:04] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:14:04] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:14:04] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:14:04] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:14:04] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:14:04] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:14:04] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.012ms +[2023-Jun-02 17:14:04] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:14:04] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:14:04] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:14:04] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:14:04] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:14:04] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:14:04] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:14:04] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:14:04] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:14:04] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:14:04] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:14:04] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:14:04] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:14:04] [debug] [ Client] - erase +[2023-Jun-02 17:14:04] [debug] [ nRF52] - erase_file +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - erase +[2023-Jun-02 17:14:04] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:14:04] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.269ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.355ms returns 1 (0x1) +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.264ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:14:04] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:14:04] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 17:14:04] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:14:04] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:14:04] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:14:04] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:14:04] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:14:04] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.300ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.368ms returns 1 (0x1) +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.290ms returns 1 (0x1) +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.288ms returns 1 (0x1) +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 3.222ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.351ms returns 1 (0x1) +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.653ms returns 0 (0x00000000) +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 17:14:04] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":11,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:14:04] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:14:04] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:14:04] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:14:04] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:14:04] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:14:04] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 17:18:45] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 17:18:45] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 17:18:45] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 17:18:45] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 17:18:45] [ info] Library loaded, loading member functions. +[2023-Jun-02 17:18:45] [ info] Member functions succesfully loaded. +[2023-Jun-02 17:18:45] [debug] [ Client] - open +[2023-Jun-02 17:18:45] [debug] [ Client] - start +[2023-Jun-02 17:18:45] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence dbc27728-5a3a-41fe-b879-d4b941834bb6. +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 17:18:45] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 17:18:45] [debug] [ nRF52] - open +[2023-Jun-02 17:18:45] [debug] [ nRF52] - just_check_family +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 17:18:45] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ Client] - config +[2023-Jun-02 17:18:45] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 17:18:45] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 17:18:45] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 17:18:45] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 17:18:45] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 17:18:45] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - config +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 17:18:45] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 17:18:45] [trace] [ Client] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:18:45] [trace] [ Worker] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 17:18:45] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 17:18:45] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 17:18:45] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 17:18:45] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 17:18:45] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 17:18:45] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 17:18:45] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 17:18:45] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 17:18:45] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 17:18:45] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 17:18:45] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 17:18:45] [trace] [ Client] - Command connect_to_emu_with_snr executed for 341 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 17:18:45] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ Client] - read_device_info +[2023-Jun-02 17:18:45] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 26.811ms returns "O.K." +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.003ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.323ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 17:18:45] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.049ms +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:18:45] [debug] [ nRF52] - read_device_family +[2023-Jun-02 17:18:45] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 341 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.004ms returns 0x01 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:18:45] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.090ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.309ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.142ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.153ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.000ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 17:18:45] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.223ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 17:18:45] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 17:18:45] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 17:18:45] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 17:18:45] [trace] [ JLink] - InitTarget() end - Took 1.58ms +[2023-Jun-02 17:18:45] [trace] [ JLink] - InitTarget() end - Took 1.58ms +[2023-Jun-02 17:18:45] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 17:18:45] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 17:18:45] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 17:18:45] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 17:18:45] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 17:18:45] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 17:18:45] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 17:18:45] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 17:18:45] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 17:18:45] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 17:18:45] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 17:18:45] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 17:18:45] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 17:18:45] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 17:18:45] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 17:18:45] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 17:18:45] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 17:18:45] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 17:18:45] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 17:18:45] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 17:18:45] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 17:18:45] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 17:18:45] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 17:18:45] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 12.349ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.002ms returns 0xE0000FF +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:18:45] [trace] [ Client] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 17:18:45] [trace] [ Client] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.266ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 17:18:45] [trace] [ Worker] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:45] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.254ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [trace] [ Client] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.289ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 17:18:45] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.026ms +[2023-Jun-02 17:18:45] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:18:45] [trace] [ Worker] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:45] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:18:45] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 17:18:45] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:18:45] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:45] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:45] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:45] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:18:45] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.019ms +[2023-Jun-02 17:18:45] [trace] [ Worker] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:18:45] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:18:45] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:18:45] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:18:45] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:18:45] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:18:45] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:18:45] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:18:45] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:18:45] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:18:45] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:18:45] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:18:45] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:18:45] [debug] [ Client] - erase +[2023-Jun-02 17:18:45] [debug] [ nRF52] - erase_file +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - erase +[2023-Jun-02 17:18:45] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:18:45] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.137ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:18:45] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:18:45] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 17:18:45] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:18:45] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:18:45] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:18:45] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:18:45] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:18:45] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.149ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.286ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 3.250ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.562ms returns 0 (0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:18:45] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.301ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.138ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:18:45] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:18:45] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:18:45] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 63.861ms +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:45] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:18:45] [ info] [ nRF52] - Erasing +[2023-Jun-02 17:18:45] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:18:45] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:18:45] [ info] [ nRF52] - Erasing flash range [0x00000000-0x000066C8] +[2023-Jun-02 17:18:45] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:18:45] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.306ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.267ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.579ms returns 0 (0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.284ms returns 0 (0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.286ms returns 0 (0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:18:45] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.337ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.149ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.283ms returns 0 (0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.352ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.327ms returns 0 (0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:18:45] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.349ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.302ms returns 0 (0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.338ms returns 0 (0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.408ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.320ms returns 0 (0x00000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:18:45] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:18:45] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:45] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:45] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:45] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:45] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:45] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.305ms returns 0 (0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.296ms returns 0 (0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.289ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.325ms returns 0 (0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:18:46] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.286ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.349ms returns 0 (0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.267ms returns 0 (0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.288ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.284ms returns 0 (0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:18:46] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.266ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.300ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.321ms returns 0 (0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.153ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00005000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.307ms returns 0 (0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.377ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.319ms returns 0 (0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:18:46] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.359ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.285ms returns 0 (0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00006000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.288ms returns 0 (0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ Client] - Command erase_file executed for 871 milliseconds with result 0 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.318ms returns 0 (0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:18:46] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":784,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 17:18:46] [trace] [ Worker] - Command erase_file executed for 871 milliseconds with result 0 +[2023-Jun-02 17:18:46] [debug] [ Client] - program +[2023-Jun-02 17:18:46] [debug] [ nRF52] - program +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:18:46] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 17:18:46] [debug] [ nRF52] - program_file +[2023-Jun-02 17:18:46] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 17:18:46] [ info] [ nRF52] - Check program file +[2023-Jun-02 17:18:46] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:18:46] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.149ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.141ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.267ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:18:46] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:18:46] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:18:46] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:18:46] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:18:46] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:18:46] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:18:46] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":921,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:18:46] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.265ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:18:46] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:18:46] [ info] [ nRF52] - Program flash. +[2023-Jun-02 17:18:46] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:18:46] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_write +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - write +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.284ms returns 0 (0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x66C8 Bytes, ...) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: C0 16 00 20 C1 15 00 00 D1 51 00 00 95 15 00 00 ... +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_WriteMem(26312 bytes @ 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ Client] - Command program_file executed for 185 milliseconds with result 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 171.584ms returns 0x66C8 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.282ms returns 0 (0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:18:46] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":173,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.016ms +[2023-Jun-02 17:18:46] [trace] [ Worker] - Command program_file executed for 185 milliseconds with result 0 +[2023-Jun-02 17:18:46] [debug] [ Client] - verify +[2023-Jun-02 17:18:46] [debug] [ nRF52] - verify +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:18:46] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 17:18:46] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 17:18:46] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:18:46] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:18:46] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.153ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:18:46] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:18:46] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:18:46] [ info] [ nRF52] - Verify +[2023-Jun-02 17:18:46] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 17:18:46] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:18:46] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:18:46] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:18:46] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:18:46] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":1159,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:18:46] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:18:46] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:18:46] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 17:18:46] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:18:46] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_read +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.274ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x66C8 Bytes, ...) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_ReadMem(26368 bytes @ 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ Client] - Command verify_file executed for 185 milliseconds with result 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - -- Updating C cache (26368 bytes @ 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - -- Read from C cache (26312 bytes @ 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Data: C0 16 00 20 C1 15 00 00 D1 51 00 00 95 15 00 00 ... +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 176.226ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:18:46] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":176,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.025ms +[2023-Jun-02 17:18:46] [trace] [ Worker] - Command verify_file executed for 185 milliseconds with result 0 +[2023-Jun-02 17:18:46] [debug] [ Client] - sys_reset +[2023-Jun-02 17:18:46] [debug] [ nRF52] - sys_reset +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:46] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 17:18:46] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:46] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:18:46] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:18:46] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:18:46] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:18:46] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:18:46] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 17:18:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:18:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:18:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:18:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:18:47] [trace] [ Client] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 17:18:47] [debug] [ Client] - go +[2023-Jun-02 17:18:47] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 17:18:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:18:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:18:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:18:47] [trace] [ JLink] - - 63.761ms +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:47] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:18:47] [trace] [ Worker] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 17:18:47] [debug] [ nRF52] - go +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:18:47] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:18:47] [debug] [ nRF52] - Just_go +[2023-Jun-02 17:18:47] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:18:47] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:47] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:18:47] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:18:47] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:18:47] [trace] [ JLink] - - 0.136ms returns 0 +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:47] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:47] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:47] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:47] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:18:47] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:18:47] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:47] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:47] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:47] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:18:47] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:18:47] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:47] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - go +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:18:47] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 17:18:47] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 17:18:47] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:18:47] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 17:18:47] [trace] [ JLink] - - 1.025ms +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:47] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:18:47] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 17:18:47] [debug] [ nRF52] - close +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:18:47] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - close +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:18:47] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:18:47] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:18:47] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:18:47] [trace] [ JLink] - - 0.139ms returns 0 +[2023-Jun-02 17:18:47] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:18:47] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:19:11] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 17:19:11] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 17:19:11] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 17:19:11] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 17:19:11] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 17:19:11] [ info] Library loaded, loading member functions. +[2023-Jun-02 17:19:11] [ info] Member functions succesfully loaded. +[2023-Jun-02 17:19:11] [debug] [ Client] - open +[2023-Jun-02 17:19:11] [debug] [ Client] - start +[2023-Jun-02 17:19:11] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence d0d1ea57-b747-4468-ac34-c2dfa9e29118. +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 17:19:11] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 17:19:11] [debug] [ nRF52] - open +[2023-Jun-02 17:19:11] [debug] [ nRF52] - just_check_family +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 17:19:11] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ Client] - config +[2023-Jun-02 17:19:11] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 17:19:11] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 17:19:11] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 17:19:11] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 17:19:11] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 17:19:11] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - config +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 17:19:11] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 17:19:11] [trace] [ Client] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:19:11] [trace] [ Worker] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 17:19:11] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 17:19:11] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 17:19:11] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 17:19:11] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 17:19:11] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 17:19:11] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 17:19:11] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 17:19:11] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 17:19:11] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 17:19:11] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 17:19:11] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 17:19:11] [trace] [ Client] - Command connect_to_emu_with_snr executed for 344 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 17:19:11] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ Client] - read_device_info +[2023-Jun-02 17:19:11] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 27.418ms returns "O.K." +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.003ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.387ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 17:19:11] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.053ms +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:19:11] [debug] [ nRF52] - read_device_family +[2023-Jun-02 17:19:11] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 343 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:19:11] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.354ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 17:19:11] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.306ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 17:19:11] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 17:19:11] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 17:19:11] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 17:19:11] [trace] [ JLink] - InitTarget() end - Took 1.73ms +[2023-Jun-02 17:19:11] [trace] [ JLink] - InitTarget() end - Took 1.73ms +[2023-Jun-02 17:19:11] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 17:19:11] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 17:19:11] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 17:19:11] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 17:19:11] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 17:19:11] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 17:19:11] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 17:19:11] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 17:19:11] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 17:19:11] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 17:19:11] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 17:19:11] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 17:19:11] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 17:19:11] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 17:19:11] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 17:19:11] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 17:19:11] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 17:19:11] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 17:19:11] [trace] [ Client] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 17:19:11] [trace] [ Client] - Command read_memory_descriptors executed for 6 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 17:19:11] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 17:19:11] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 17:19:11] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 17:19:11] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 17:19:11] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 17:19:11] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 12.852ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0xE0000FF +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 17:19:11] [trace] [ Worker] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:11] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 1.077ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.026ms +[2023-Jun-02 17:19:11] [trace] [ Worker] - Command read_memory_descriptors executed for 6 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:11] [trace] [ Client] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:19:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:19:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:19:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:19:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:19:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:19:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:19:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:19:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:19:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:19:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:19:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:19:11] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:11] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 17:19:11] [trace] [ Worker] - Command read_memory_descriptors executed for 5 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:19:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:19:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:19:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:19:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:19:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:19:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:19:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:19:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:19:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:19:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:19:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:19:11] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:19:11] [debug] [ Client] - erase +[2023-Jun-02 17:19:11] [debug] [ nRF52] - erase_file +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - erase +[2023-Jun-02 17:19:11] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:19:11] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:19:11] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:19:11] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 17:19:11] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:19:11] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:19:11] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:19:11] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:19:11] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:19:11] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.377ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.365ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.359ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.367ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 3.334ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.358ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.675ms returns 0 (0x00000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":11,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:19:11] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.367ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:19:11] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:19:11] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:19:11] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 64.030ms +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:11] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:19:11] [ info] [ nRF52] - Erasing +[2023-Jun-02 17:19:11] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:19:11] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:19:11] [ info] [ nRF52] - Erasing flash range [0x00000000-0x000066C8] +[2023-Jun-02 17:19:11] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:19:11] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.241ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.368ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.278ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.573ms returns 0 (0x00000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.310ms returns 0 (0x00000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.339ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.359ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.390ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.339ms returns 0 (0x00000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:19:11] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.357ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.386ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.319ms returns 0 (0x00000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.327ms returns 0 (0x00000000) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.381ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:11] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:11] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:11] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:11] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 17:19:11] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.289ms returns 0 (0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:19:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.292ms returns 0 (0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.378ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.360ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.348ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.327ms returns 0 (0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:19:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.274ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.368ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.448ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.307ms returns 0 (0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.311ms returns 0 (0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.386ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.358ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.369ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.362ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.326ms returns 0 (0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:19:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.367ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.386ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.302ms returns 0 (0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.266ms returns 0 (0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.376ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.360ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.325ms returns 0 (0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:19:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.138ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.231ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.335ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.314ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.282ms returns 0 (0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00005000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.310ms returns 0 (0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.326ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.320ms returns 0 (0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.368ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:19:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.325ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.385ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.330ms returns 0 (0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00006000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.320ms returns 0 (0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.305ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ Client] - Command erase_file executed for 880 milliseconds with result 0 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.372ms returns 0 (0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:19:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":791,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 17:19:12] [trace] [ Worker] - Command erase_file executed for 880 milliseconds with result 0 +[2023-Jun-02 17:19:12] [debug] [ Client] - program +[2023-Jun-02 17:19:12] [debug] [ nRF52] - program +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:19:12] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 17:19:12] [debug] [ nRF52] - program_file +[2023-Jun-02 17:19:12] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 17:19:12] [ info] [ nRF52] - Check program file +[2023-Jun-02 17:19:12] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:19:12] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:19:12] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.368ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:19:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:19:12] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:19:12] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:19:12] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:19:12] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:19:12] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":930,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:19:12] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.286ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:19:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:19:12] [ info] [ nRF52] - Program flash. +[2023-Jun-02 17:19:12] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:19:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_write +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - write +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.153ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x66C8 Bytes, ...) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: C0 16 00 20 C1 15 00 00 D1 51 00 00 95 15 00 00 ... +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_WriteMem(26312 bytes @ 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ Client] - Command program_file executed for 188 milliseconds with result 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 171.619ms returns 0x66C8 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.376ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 1.272ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.321ms returns 0 (0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:19:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":175,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.017ms +[2023-Jun-02 17:19:12] [trace] [ Worker] - Command program_file executed for 188 milliseconds with result 0 +[2023-Jun-02 17:19:12] [debug] [ Client] - verify +[2023-Jun-02 17:19:12] [debug] [ nRF52] - verify +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.008ms returns 0x01 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:19:12] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 17:19:12] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 17:19:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:19:12] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:19:12] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.263ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:19:12] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:19:12] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.290ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.296ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.278ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.267ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:19:12] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:19:12] [ info] [ nRF52] - Verify +[2023-Jun-02 17:19:12] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 17:19:12] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:19:12] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:19:12] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:19:12] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:19:12] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":1171,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:19:12] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:19:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:19:12] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 17:19:12] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:19:12] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:19:12] [debug] [ nRF52] - Just_read +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - read +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.316ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 17:19:12] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:19:12] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:12] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x66C8 Bytes, ...) +[2023-Jun-02 17:19:12] [trace] [ JLink] - CPU_ReadMem(26368 bytes @ 0x00000000) +[2023-Jun-02 17:19:13] [trace] [ Client] - Command verify_file executed for 187 milliseconds with result 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - -- Updating C cache (26368 bytes @ 0x00000000) +[2023-Jun-02 17:19:13] [trace] [ JLink] - -- Read from C cache (26312 bytes @ 0x00000000) +[2023-Jun-02 17:19:13] [trace] [ JLink] - Data: C0 16 00 20 C1 15 00 00 D1 51 00 00 95 15 00 00 ... +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 176.565ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:19:13] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":176,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.021ms +[2023-Jun-02 17:19:13] [trace] [ Worker] - Command verify_file executed for 187 milliseconds with result 0 +[2023-Jun-02 17:19:13] [debug] [ Client] - sys_reset +[2023-Jun-02 17:19:13] [debug] [ nRF52] - sys_reset +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:19:13] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 17:19:13] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:13] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:19:13] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.278ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.004ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 17:19:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:19:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:19:13] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:19:13] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:19:13] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:19:13] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:19:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 17:19:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:19:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:19:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:19:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:19:13] [trace] [ Client] - Command sys_reset executed for 67 milliseconds with result 0 +[2023-Jun-02 17:19:13] [debug] [ Client] - go +[2023-Jun-02 17:19:13] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:19:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:19:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 64.351ms +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.013ms +[2023-Jun-02 17:19:13] [trace] [ Worker] - Command sys_reset executed for 67 milliseconds with result 0 +[2023-Jun-02 17:19:13] [debug] [ nRF52] - go +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:19:13] [debug] [ nRF52] - Just_go +[2023-Jun-02 17:19:13] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:19:13] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:19:13] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:13] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:19:13] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - go +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 17:19:13] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:19:13] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 1.093ms +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:19:13] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 17:19:13] [debug] [ nRF52] - close +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - close +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:19:13] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:19:13] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:19:13] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:19:13] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:26:35] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 17:26:35] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 17:26:35] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 17:26:35] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 17:26:35] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 17:26:35] [ info] Library loaded, loading member functions. +[2023-Jun-02 17:26:35] [ info] Member functions succesfully loaded. +[2023-Jun-02 17:26:35] [debug] [ Client] - open +[2023-Jun-02 17:26:35] [debug] [ Client] - start +[2023-Jun-02 17:26:35] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence f9a51ce8-9b44-4dfd-9f12-75121f383c27. +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 17:26:35] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 17:26:35] [debug] [ nRF52] - open +[2023-Jun-02 17:26:35] [debug] [ nRF52] - just_check_family +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 17:26:35] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ Client] - config +[2023-Jun-02 17:26:35] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 17:26:35] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 17:26:35] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 17:26:35] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 17:26:35] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 17:26:35] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - config +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 17:26:35] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 17:26:35] [trace] [ Client] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:26:35] [trace] [ Worker] - Command enum_emu_con_info executed for 103 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 17:26:35] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 17:26:35] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 17:26:35] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 17:26:35] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 17:26:35] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 17:26:35] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 17:26:35] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 17:26:35] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 17:26:35] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 17:26:35] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 17:26:35] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 17:26:35] [trace] [ Client] - Command connect_to_emu_with_snr executed for 343 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 17:26:35] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ Client] - read_device_info +[2023-Jun-02 17:26:35] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 27.385ms returns "O.K." +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.003ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.302ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 17:26:35] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.051ms +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:26:35] [debug] [ nRF52] - read_device_family +[2023-Jun-02 17:26:35] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 343 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:26:35] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.088ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.330ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns FALSE +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 17:26:35] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.263ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 17:26:35] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 17:26:35] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 17:26:35] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 17:26:35] [trace] [ JLink] - InitTarget() end - Took 1.52ms +[2023-Jun-02 17:26:35] [trace] [ JLink] - InitTarget() end - Took 1.52ms +[2023-Jun-02 17:26:35] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 17:26:35] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 17:26:35] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 17:26:35] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 17:26:35] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 17:26:35] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 17:26:35] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 17:26:35] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 17:26:35] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 17:26:35] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 17:26:35] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 17:26:35] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 17:26:35] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 17:26:35] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 17:26:35] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 17:26:35] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 17:26:35] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 17:26:35] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 17:26:35] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 17:26:35] [trace] [ Client] - Command read_device_info executed for 15 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 17:26:35] [trace] [ Client] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 17:26:35] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 17:26:35] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 17:26:35] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 17:26:35] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 17:26:35] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 17:26:35] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 12.182ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0xE0000FF +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.266ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 17:26:35] [trace] [ Worker] - Command read_device_info executed for 15 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.138ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:35] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.025ms +[2023-Jun-02 17:26:35] [trace] [ Worker] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.148ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:35] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ Client] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:26:35] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:26:35] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:26:35] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:26:35] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:26:35] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:26:35] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:26:35] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:26:35] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:26:35] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:26:35] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:26:35] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:26:35] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.013ms +[2023-Jun-02 17:26:35] [trace] [ Worker] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:26:35] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:26:35] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:26:35] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:26:35] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:26:35] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:26:35] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:26:35] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:26:35] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:26:35] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:26:35] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:26:35] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:26:35] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:26:35] [debug] [ Client] - erase +[2023-Jun-02 17:26:35] [debug] [ nRF52] - erase_file +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - erase +[2023-Jun-02 17:26:35] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:26:35] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.138ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:26:35] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:26:35] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 17:26:35] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:26:35] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:26:35] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:26:35] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:26:35] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:26:35] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 3.269ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.267ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.628ms returns 0 (0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:26:35] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:26:35] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:26:35] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:26:35] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 63.749ms +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:35] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:26:35] [ info] [ nRF52] - Erasing +[2023-Jun-02 17:26:35] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:26:35] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:26:35] [ info] [ nRF52] - Erasing flash range [0x00000000-0x00006C6C] +[2023-Jun-02 17:26:35] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:26:35] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.290ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.613ms returns 0 (0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.264ms returns 0 (0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.327ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.319ms returns 0 (0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:26:35] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.264ms returns 0 (0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.266ms returns 0 (0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.300ms returns 0 (0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:26:35] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.291ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.250ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.291ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.325ms returns 0 (0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.327ms returns 0 (0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.352ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.423ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.376ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.355ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.230ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.368ms returns 0 (0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.306ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:26:35] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.262ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.368ms returns 0 (0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.266ms returns 0 (0x00000000) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:35] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:35] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:35] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:35] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 17:26:35] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.286ms returns 0 (0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:26:36] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.266ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.267ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.282ms returns 0 (0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.267ms returns 0 (0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.297ms returns 0 (0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:26:36] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.291ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.306ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.305ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.291ms returns 0 (0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.287ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00005000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.309ms returns 0 (0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.287ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.331ms returns 0 (0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:26:36] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.275ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.276ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.324ms returns 0 (0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00006000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.281ms returns 0 (0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.286ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ Client] - Command erase_file executed for 873 milliseconds with result 0 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.319ms returns 0 (0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:26:36] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":786,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 17:26:36] [trace] [ Worker] - Command erase_file executed for 873 milliseconds with result 0 +[2023-Jun-02 17:26:36] [debug] [ Client] - program +[2023-Jun-02 17:26:36] [debug] [ nRF52] - program +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.008ms returns 0x01 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:26:36] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 17:26:36] [debug] [ nRF52] - program_file +[2023-Jun-02 17:26:36] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 17:26:36] [ info] [ nRF52] - Check program file +[2023-Jun-02 17:26:36] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:26:36] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.251ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.153ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.282ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.382ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.344ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:26:36] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:26:36] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:26:36] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:26:36] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:26:36] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:26:36] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:26:36] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":924,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:26:36] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.264ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.306ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:26:36] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:26:36] [ info] [ nRF52] - Program flash. +[2023-Jun-02 17:26:36] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:26:36] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_write +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - write +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.278ms returns 0 (0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x6C6C Bytes, ...) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: C0 17 00 20 7D 17 00 00 81 54 00 00 51 17 00 00 ... +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_WriteMem(27756 bytes @ 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ Client] - Command program_file executed for 196 milliseconds with result 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 180.875ms returns 0x6C6C +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.354ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.283ms returns 0 (0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:26:36] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":183,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.016ms +[2023-Jun-02 17:26:36] [trace] [ Worker] - Command program_file executed for 196 milliseconds with result 0 +[2023-Jun-02 17:26:36] [debug] [ Client] - verify +[2023-Jun-02 17:26:36] [debug] [ nRF52] - verify +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.012ms returns 0x01 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:26:36] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 17:26:36] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 17:26:36] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:26:36] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:26:36] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.003ms returns TRUE +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.009ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.348ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:26:36] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:26:36] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:26:36] [ info] [ nRF52] - Verify +[2023-Jun-02 17:26:36] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 17:26:36] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:26:36] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:26:36] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:26:36] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:26:36] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":1177,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:26:36] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:26:36] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:26:36] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 17:26:36] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:26:36] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_read +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.304ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x6C6C Bytes, ...) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_ReadMem(27776 bytes @ 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ Client] - Command verify_file executed for 200 milliseconds with result 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - -- Updating C cache (27776 bytes @ 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - -- Read from C cache (27756 bytes @ 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Data: C0 17 00 20 7D 17 00 00 81 54 00 00 51 17 00 00 ... +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 185.164ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:26:36] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":185,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.026ms +[2023-Jun-02 17:26:36] [trace] [ Worker] - Command verify_file executed for 200 milliseconds with result 0 +[2023-Jun-02 17:26:36] [debug] [ Client] - sys_reset +[2023-Jun-02 17:26:36] [debug] [ nRF52] - sys_reset +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.008ms returns 0x01 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:36] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.137ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 17:26:36] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:36] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:26:36] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:26:36] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:26:36] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:26:36] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:26:36] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 17:26:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:26:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:26:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:26:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:26:37] [trace] [ Client] - Command sys_reset executed for 65 milliseconds with result 0 +[2023-Jun-02 17:26:37] [debug] [ Client] - go +[2023-Jun-02 17:26:37] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 17:26:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:26:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:26:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:26:37] [trace] [ JLink] - - 63.672ms +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:37] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:26:37] [trace] [ Worker] - Command sys_reset executed for 65 milliseconds with result 0 +[2023-Jun-02 17:26:37] [debug] [ nRF52] - go +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:26:37] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:26:37] [debug] [ nRF52] - Just_go +[2023-Jun-02 17:26:37] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:26:37] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:37] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:26:37] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:26:37] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:26:37] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:37] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:37] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:37] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:37] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:26:37] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:26:37] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:37] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:37] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:37] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:26:37] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:26:37] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:37] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - go +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:26:37] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 17:26:37] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 17:26:37] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:26:37] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 17:26:37] [trace] [ JLink] - - 1.089ms +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:37] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:26:37] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 17:26:37] [debug] [ nRF52] - close +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:26:37] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - close +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:26:37] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:26:37] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:26:37] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:26:37] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:26:37] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:26:37] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:23] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 17:34:23] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 17:34:23] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 17:34:23] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 17:34:23] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 17:34:23] [ info] Library loaded, loading member functions. +[2023-Jun-02 17:34:23] [ info] Member functions succesfully loaded. +[2023-Jun-02 17:34:23] [debug] [ Client] - open +[2023-Jun-02 17:34:23] [debug] [ Client] - start +[2023-Jun-02 17:34:23] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence cbd44b06-9a76-49f3-aad9-594a300fca5a. +[2023-Jun-02 17:34:23] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 17:34:23] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 17:34:23] [debug] [ nRF52] - open +[2023-Jun-02 17:34:23] [debug] [ nRF52] - just_check_family +[2023-Jun-02 17:34:23] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 17:34:23] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 17:34:23] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 17:34:23] [debug] [ Client] - config +[2023-Jun-02 17:34:23] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:23] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 17:34:23] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 17:34:23] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 17:34:23] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 17:34:23] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 17:34:23] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 17:34:23] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 17:34:23] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 17:34:23] [debug] [ nRF52] - config +[2023-Jun-02 17:34:23] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 17:34:23] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:23] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 17:34:23] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:34:23] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 17:34:24] [trace] [ Client] - Command enum_emu_con_info executed for 105 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:34:24] [trace] [ Worker] - Command enum_emu_con_info executed for 105 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 17:34:24] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 17:34:24] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 17:34:24] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 17:34:24] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 17:34:24] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 17:34:24] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 17:34:24] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 17:34:24] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 17:34:24] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 17:34:24] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 17:34:24] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 17:34:24] [trace] [ Client] - Command connect_to_emu_with_snr executed for 341 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 17:34:24] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ Client] - read_device_info +[2023-Jun-02 17:34:24] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 27.000ms returns "O.K." +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.003ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.303ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 17:34:24] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.049ms +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:34:24] [debug] [ nRF52] - read_device_family +[2023-Jun-02 17:34:24] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 341 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:34:24] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.087ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.349ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.153ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.002ms returns FALSE +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 17:34:24] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.257ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 17:34:24] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 17:34:24] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 17:34:24] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 17:34:24] [trace] [ JLink] - InitTarget() end - Took 1.52ms +[2023-Jun-02 17:34:24] [trace] [ JLink] - InitTarget() end - Took 1.52ms +[2023-Jun-02 17:34:24] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 17:34:24] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 17:34:24] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 17:34:24] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 17:34:24] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 17:34:24] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 17:34:24] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 17:34:24] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 17:34:24] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 17:34:24] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 17:34:24] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 17:34:24] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 17:34:24] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 17:34:24] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 17:34:24] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 17:34:24] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 17:34:24] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 17:34:24] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 17:34:24] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 17:34:24] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 17:34:24] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 17:34:24] [trace] [ Client] - Command read_device_info executed for 15 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 17:34:24] [trace] [ Client] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 17:34:24] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 17:34:24] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 17:34:24] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 17:34:24] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 12.170ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0xE0000FF +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.264ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 17:34:24] [trace] [ Worker] - Command read_device_info executed for 15 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.146ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.137ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:24] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.137ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.139ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.025ms +[2023-Jun-02 17:34:24] [trace] [ Worker] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.139ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.149ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:24] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ Client] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:34:24] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:34:24] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:34:24] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:34:24] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:34:24] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:34:24] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:34:24] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:34:24] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:34:24] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:34:24] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:34:24] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:34:24] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.012ms +[2023-Jun-02 17:34:24] [trace] [ Worker] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:34:24] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:34:24] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:34:24] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:34:24] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:34:24] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:34:24] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:34:24] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:34:24] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:34:24] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:34:24] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:34:24] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:34:24] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:34:24] [debug] [ Client] - erase +[2023-Jun-02 17:34:24] [debug] [ nRF52] - erase_file +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - erase +[2023-Jun-02 17:34:24] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:34:24] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:34:24] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:34:24] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 17:34:24] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:34:24] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:34:24] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:34:24] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:34:24] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:34:24] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.265ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 3.239ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.291ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.588ms returns 0 (0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:34:24] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:34:24] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:34:24] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:34:24] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 63.384ms +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:24] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:34:24] [ info] [ nRF52] - Erasing +[2023-Jun-02 17:34:24] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:34:24] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:34:24] [ info] [ nRF52] - Erasing flash range [0x00000000-0x00006C78] +[2023-Jun-02 17:34:24] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:34:24] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.235ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.267ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.286ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.328ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.148ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.618ms returns 0 (0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.286ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.267ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.310ms returns 0 (0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:34:24] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.265ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.306ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.320ms returns 0 (0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.309ms returns 0 (0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.264ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.338ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.319ms returns 0 (0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:34:24] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.146ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.288ms returns 0 (0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.302ms returns 0 (0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.346ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.343ms returns 0 (0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:34:24] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.347ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.266ms returns 0 (0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.306ms returns 0 (0x00000000) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:24] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:24] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:24] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:24] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:34:24] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.154ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.282ms returns 0 (0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.332ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:34:25] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.146ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.278ms returns 0 (0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.283ms returns 0 (0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.298ms returns 0 (0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:34:25] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.305ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.323ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.265ms returns 0 (0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00005000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.267ms returns 0 (0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.352ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.336ms returns 0 (0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:34:25] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.290ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.139ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.321ms returns 0 (0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00006000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.308ms returns 0 (0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.352ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ Client] - Command erase_file executed for 871 milliseconds with result 0 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.367ms returns 0 (0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:34:25] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":784,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 17:34:25] [trace] [ Worker] - Command erase_file executed for 871 milliseconds with result 0 +[2023-Jun-02 17:34:25] [debug] [ Client] - program +[2023-Jun-02 17:34:25] [debug] [ nRF52] - program +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:34:25] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 17:34:25] [debug] [ nRF52] - program_file +[2023-Jun-02 17:34:25] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 17:34:25] [ info] [ nRF52] - Check program file +[2023-Jun-02 17:34:25] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:34:25] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.233ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:34:25] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:34:25] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:34:25] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:34:25] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:34:25] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:34:25] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:34:25] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":921,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:34:25] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:34:25] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:34:25] [ info] [ nRF52] - Program flash. +[2023-Jun-02 17:34:25] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:34:25] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_write +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - write +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.286ms returns 0 (0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x6C78 Bytes, ...) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: C0 17 00 20 85 17 00 00 89 54 00 00 59 17 00 00 ... +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_WriteMem(27768 bytes @ 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ Client] - Command program_file executed for 195 milliseconds with result 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 181.047ms returns 0x6C78 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.288ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.327ms returns 0 (0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:34:25] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":183,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 17:34:25] [trace] [ Worker] - Command program_file executed for 195 milliseconds with result 0 +[2023-Jun-02 17:34:25] [debug] [ Client] - verify +[2023-Jun-02 17:34:25] [debug] [ nRF52] - verify +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:34:25] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 17:34:25] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 17:34:25] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:34:25] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:34:25] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.272ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.281ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.286ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.270ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.281ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.240ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.003ms returns TRUE +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:34:25] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.262ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.253ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:34:25] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:34:25] [ info] [ nRF52] - Verify +[2023-Jun-02 17:34:25] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 17:34:25] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:34:25] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:34:25] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:34:25] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:34:25] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":1170,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:34:25] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:34:25] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:34:25] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 17:34:25] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:34:25] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_read +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.359ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x6C78 Bytes, ...) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(27776 bytes @ 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ Client] - Command verify_file executed for 196 milliseconds with result 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - -- Updating C cache (27776 bytes @ 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - -- Read from C cache (27768 bytes @ 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Data: C0 17 00 20 85 17 00 00 89 54 00 00 59 17 00 00 ... +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 185.530ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:34:25] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":185,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.039ms +[2023-Jun-02 17:34:25] [trace] [ Worker] - Command verify_file executed for 196 milliseconds with result 0 +[2023-Jun-02 17:34:25] [debug] [ Client] - sys_reset +[2023-Jun-02 17:34:25] [debug] [ nRF52] - sys_reset +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.008ms returns 0x01 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.287ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.295ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.003ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:34:25] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:34:25] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:34:25] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:34:25] [trace] [ Client] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 17:34:25] [debug] [ Client] - go +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 63.727ms +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.004ms +[2023-Jun-02 17:34:25] [trace] [ Worker] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 17:34:25] [debug] [ nRF52] - go +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 17:34:25] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_go +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:34:25] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.279ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - go +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.003ms returns TRUE +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 1.035ms +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:34:25] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 17:34:25] [debug] [ nRF52] - close +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - close +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.003ms returns TRUE +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:34:25] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:34:25] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 17:34:25] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:34:25] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:16] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 17:35:16] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 17:35:16] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 17:35:16] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 17:35:16] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 17:35:16] [ info] Library loaded, loading member functions. +[2023-Jun-02 17:35:16] [ info] Member functions succesfully loaded. +[2023-Jun-02 17:35:16] [debug] [ Client] - open +[2023-Jun-02 17:35:16] [debug] [ Client] - start +[2023-Jun-02 17:35:16] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence 7a35c046-55a2-4a07-ae0a-f02ba2feeae9. +[2023-Jun-02 17:35:16] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 17:35:16] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 17:35:16] [debug] [ nRF52] - open +[2023-Jun-02 17:35:16] [debug] [ nRF52] - just_check_family +[2023-Jun-02 17:35:16] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 17:35:16] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 17:35:16] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 17:35:16] [debug] [ Client] - config +[2023-Jun-02 17:35:16] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:16] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 17:35:16] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 17:35:16] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 17:35:16] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 17:35:16] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 17:35:16] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 17:35:16] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 17:35:16] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 17:35:16] [debug] [ nRF52] - config +[2023-Jun-02 17:35:16] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 17:35:16] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:16] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 17:35:16] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:16] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 17:35:17] [trace] [ Client] - Command enum_emu_con_info executed for 104 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:17] [trace] [ Worker] - Command enum_emu_con_info executed for 104 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 17:35:17] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 17:35:17] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 17:35:17] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 17:35:17] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 17:35:17] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 17:35:17] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 17:35:17] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 17:35:17] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 17:35:17] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 17:35:17] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 17:35:17] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 17:35:17] [trace] [ Client] - Command connect_to_emu_with_snr executed for 341 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 17:35:17] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ Client] - read_device_info +[2023-Jun-02 17:35:17] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 26.958ms returns "O.K." +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.296ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 17:35:17] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.058ms +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 2000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:35:17] [debug] [ nRF52] - read_device_family +[2023-Jun-02 17:35:17] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 341 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:35:17] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.091ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.355ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns FALSE +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 17:35:17] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.202ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 17:35:17] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 17:35:17] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 17:35:17] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 17:35:17] [trace] [ JLink] - InitTarget() end - Took 1.53ms +[2023-Jun-02 17:35:17] [trace] [ JLink] - InitTarget() end - Took 1.53ms +[2023-Jun-02 17:35:17] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 17:35:17] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 17:35:17] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 17:35:17] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 17:35:17] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 17:35:17] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 17:35:17] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 17:35:17] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 17:35:17] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 17:35:17] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 17:35:17] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 17:35:17] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 17:35:17] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 17:35:17] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 17:35:17] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 17:35:17] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 17:35:17] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 17:35:17] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 17:35:17] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 17:35:17] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 17:35:17] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 17:35:17] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 17:35:17] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 17:35:17] [trace] [ Client] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 17:35:17] [trace] [ Client] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 17:35:17] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 17:35:17] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 12.383ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms returns 0xE0000FF +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.267ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.014ms +[2023-Jun-02 17:35:17] [trace] [ Worker] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.143ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:17] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.024ms +[2023-Jun-02 17:35:17] [trace] [ Worker] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ Client] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:17] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:17] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:17] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.266ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.016ms +[2023-Jun-02 17:35:17] [trace] [ Worker] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:35:17] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:35:17] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:35:17] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:35:17] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:35:17] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:35:17] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:35:17] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:35:17] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:35:17] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:35:17] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:35:17] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:35:17] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:17] [debug] [ Client] - erase +[2023-Jun-02 17:35:17] [debug] [ nRF52] - erase_file +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.005ms returns 0x01 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - erase +[2023-Jun-02 17:35:17] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:35:17] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:35:17] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:35:17] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 17:35:17] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:35:17] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:35:17] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:35:17] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:35:17] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:35:17] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.330ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 3.251ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.663ms returns 0 (0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:35:17] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:35:17] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:35:17] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:35:17] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 64.257ms +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.267ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:17] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:35:17] [ info] [ nRF52] - Erasing +[2023-Jun-02 17:35:17] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:35:17] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:35:17] [ info] [ nRF52] - Erasing flash range [0x00000000-0x00006C6C] +[2023-Jun-02 17:35:17] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:35:17] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.696ms returns 0 (0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.269ms returns 0 (0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.322ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.364ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.324ms returns 0 (0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:35:17] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.148ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.290ms returns 0 (0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.149ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.294ms returns 0 (0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.286ms returns 0 (0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:35:17] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.263ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.258ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.266ms returns 0 (0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.266ms returns 0 (0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.305ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.323ms returns 0 (0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:35:17] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.244ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.245ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.237ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.320ms returns 0 (0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.264ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.339ms returns 0 (0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.345ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.347ms returns 0 (0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:35:17] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.141ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.158ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.301ms returns 0 (0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.298ms returns 0 (0x00000000) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:17] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:17] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:17] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:17] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:17] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.286ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.368ms returns 0 (0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:35:18] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.265ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.265ms returns 0 (0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.342ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00005000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.266ms returns 0 (0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.378ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.358ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.236ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.286ms returns 0 (0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:35:18] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.279ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.310ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.354ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.380ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.305ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.331ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.289ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.315ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.333ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.234ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.290ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.318ms returns 0 (0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.291ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00006000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.322ms returns 0 (0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.284ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.329ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.137ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:18] [trace] [ Client] - Command erase_file executed for 873 milliseconds with result 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.326ms returns 0 (0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:35:18] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":785,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 17:35:18] [trace] [ Worker] - Command erase_file executed for 873 milliseconds with result 0 +[2023-Jun-02 17:35:18] [debug] [ Client] - program +[2023-Jun-02 17:35:18] [debug] [ nRF52] - program +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:18] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 17:35:18] [debug] [ nRF52] - program_file +[2023-Jun-02 17:35:18] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 17:35:18] [ info] [ nRF52] - Check program file +[2023-Jun-02 17:35:18] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:35:18] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.265ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:18] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:35:18] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:35:18] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:35:18] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:35:18] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:35:18] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:35:18] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":923,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:35:18] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.267ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.287ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:35:18] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:35:18] [ info] [ nRF52] - Program flash. +[2023-Jun-02 17:35:18] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:35:18] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_write +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - write +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.320ms returns 0 (0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x6C6C Bytes, ...) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: C0 17 00 20 7D 17 00 00 81 54 00 00 51 17 00 00 ... +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_WriteMem(27756 bytes @ 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ Client] - Command program_file executed for 195 milliseconds with result 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 180.888ms returns 0x6C6C +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.144ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.331ms returns 0 (0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:35:18] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":183,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.026ms +[2023-Jun-02 17:35:18] [trace] [ Worker] - Command program_file executed for 195 milliseconds with result 0 +[2023-Jun-02 17:35:18] [debug] [ Client] - verify +[2023-Jun-02 17:35:18] [debug] [ nRF52] - verify +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.006ms returns 0x01 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:18] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 17:35:18] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 17:35:18] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:35:18] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:35:18] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.256ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:18] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:35:18] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:18] [ info] [ nRF52] - Verify +[2023-Jun-02 17:35:18] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 17:35:18] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:35:18] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:35:18] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:35:18] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:35:18] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":1171,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:35:18] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:35:18] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:35:18] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 17:35:18] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:35:18] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_read +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.289ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x6C6C Bytes, ...) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(27776 bytes @ 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ Client] - Command verify_file executed for 195 milliseconds with result 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - -- Updating C cache (27776 bytes @ 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - -- Read from C cache (27756 bytes @ 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Data: C0 17 00 20 7D 17 00 00 81 54 00 00 51 17 00 00 ... +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 185.358ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:35:18] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":185,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.025ms +[2023-Jun-02 17:35:18] [trace] [ Worker] - Command verify_file executed for 195 milliseconds with result 0 +[2023-Jun-02 17:35:18] [debug] [ Client] - sys_reset +[2023-Jun-02 17:35:18] [debug] [ nRF52] - sys_reset +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.147ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.013ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:35:18] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:35:18] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:35:18] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:35:18] [trace] [ Client] - Command sys_reset executed for 65 milliseconds with result 0 +[2023-Jun-02 17:35:18] [debug] [ Client] - go +[2023-Jun-02 17:35:18] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 63.431ms +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 17:35:18] [trace] [ Worker] - Command sys_reset executed for 65 milliseconds with result 0 +[2023-Jun-02 17:35:18] [debug] [ nRF52] - go +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_go +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:18] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.248ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - go +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.987ms +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:35:18] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 17:35:18] [debug] [ nRF52] - close +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - close +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:35:18] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:35:18] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:35:18] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:18] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:57] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 17:35:57] [debug] nrfjprog -f nrf52 --program zephyr.hex --sectorerase --verify --log --reset +[2023-Jun-02 17:35:57] [debug] nrfjprog version 10.19.0 external +[2023-Jun-02 17:35:57] [debug] -------------------------------------------------------------------------------- +[2023-Jun-02 17:35:57] [ info] Load library at /opt/nrf-command-line-tools/lib/libnrfjprogdll.so. +[2023-Jun-02 17:35:57] [ info] Library loaded, loading member functions. +[2023-Jun-02 17:35:57] [ info] Member functions succesfully loaded. +[2023-Jun-02 17:35:57] [debug] [ Client] - open +[2023-Jun-02 17:35:57] [debug] [ Client] - start +[2023-Jun-02 17:35:57] [ info] [ Client] - stdout: Jlinkarm nRF Worker ready. Handling sequence aff40e58-f834-4de4-aed6-dd3ff4a27210. +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Logger sink registered in Segger backend logger +[2023-Jun-02 17:35:57] [debug] [ JLink] - Logger sink registered in JLink logger +[2023-Jun-02 17:35:57] [debug] [ nRF52] - open +[2023-Jun-02 17:35:57] [debug] [ nRF52] - just_check_family +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - open_dll +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - No J-Link DLL path was provided. Attempting to auto detect. +[2023-Jun-02 17:35:57] [trace] [ Client] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ Client] - config +[2023-Jun-02 17:35:57] [trace] [ Client] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ Client] - enum_emu_snr +[2023-Jun-02 17:35:57] [ info] [SeggerBackend] - Load library at /opt/SEGGER/JLink/libjlinkarm.so.7.88.5. +[2023-Jun-02 17:35:57] [ info] [SeggerBackend] - Library loaded, loading member functions. +[2023-Jun-02 17:35:57] [ info] [SeggerBackend] - Member functions succesfully loaded. +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Set batch mode +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - dll_version +[2023-Jun-02 17:35:57] [ info] [SeggerBackend] - Segger dll version 7.88.e loaded. +[2023-Jun-02 17:35:57] [trace] [ Worker] - Command open executed for 1 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - config +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - enum_emu_snr +[2023-Jun-02 17:35:57] [trace] [ Worker] - Command config executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - enum_emu_con_info +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - enum_emu_con_info +[2023-Jun-02 17:35:57] [trace] [ Client] - Command enum_emu_con_info executed for 102 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ Client] - connect_to_emu_with_snr +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:57] [trace] [ Worker] - Command enum_emu_con_info executed for 102 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - connect_to_emu_with_snr +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - connect_to_emu_with_snr +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_enum_emu_snr +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_get_num_emus +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_emu_with_snr +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_emu_without_snr +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Segger logging enabled. +[2023-Jun-02 17:35:57] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 17:35:57] [trace] [ JLink] - Firmware: J-Link OB-nRF5340-NordicSemi compiled Nov 7 2022 16:22:01 +[2023-Jun-02 17:35:57] [trace] [ JLink] - Hardware: V1.00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - S/N: 1050282167 +[2023-Jun-02 17:35:57] [trace] [ JLink] - OEM: SEGGER +[2023-Jun-02 17:35:57] [trace] [ JLink] - Feature(s): RDI, FlashBP, FlashDL, JFlash, GDB +[2023-Jun-02 17:35:57] [trace] [ JLink] - USB speed mode: Full speed (12 MBit/s) +[2023-Jun-02 17:35:57] [trace] [ JLink] - TELNET listener socket opened on port 19021 +[2023-Jun-02 17:35:57] [trace] [ JLink] - WEBSRV WEBSRV_Init(): Starting webserver thread(s) +[2023-Jun-02 17:35:57] [trace] [ JLink] - WEBSRV Webserver running on local port 19080 +[2023-Jun-02 17:35:57] [trace] [ JLink] - Looking for J-Link GUI Server exe at: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 17:35:57] [trace] [ JLink] - Forking J-Link GUI Server: /opt/SEGGER/JLink/JLinkGUIServerExe +[2023-Jun-02 17:35:57] [trace] [ Client] - Command connect_to_emu_with_snr executed for 343 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ Client] - read_connected_emu_snr +[2023-Jun-02 17:35:57] [trace] [ Client] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ Client] - read_device_info +[2023-Jun-02 17:35:57] [trace] [ JLink] - J-Link GUI Server info: "J-Link GUI server V7.88e " +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 27.689ms returns "O.K." +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("SetRestartOnClose = 0", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("DisableFlashDL", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("ExcludeFlashCacheRange 0x0-0xFFFFFFFF", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_SetHookUnsecureDialog +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_SetHookUnsecureDialog(...) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.005ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_TIF_Select(JLINKARM_TIF_SWD) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.416ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_GetSpeedInfo() +[2023-Jun-02 17:35:57] [trace] [ JLink] - 128000000 Hz / n, n >= 64 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.005ms +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Connected emulator supports SWD speeds up to 2000kHz +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_SetSpeed(2000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.048ms +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_GetSpeed() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.002ms returns 2000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - SWD clock set to 2000kHz +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_GetSN() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 1050282167 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 17:35:57] [debug] [ nRF52] - read_device_family +[2023-Jun-02 17:35:57] [trace] [ Worker] - Command connect_to_emu_with_snr executed for 343 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - read_connected_emu_snr +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_connected_emu_snr +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:35:57] [trace] [ Worker] - Command read_connected_emu_snr executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - coresight_configure +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_GetHWStatus(...) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.114ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_Configure() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.358ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_debug_port_idr +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x00) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x2BA01477 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.224ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.003ms returns FALSE +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---set_coresight_ahb_ap_index +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("CORESIGHT_SetIndexAHBAPToUse = 0", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("device = nRF52", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 17:35:57] [trace] [ JLink] - Device "NRF52" selected. +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.374ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Connect() +[2023-Jun-02 17:35:57] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 17:35:57] [trace] [ JLink] - InitTarget() start +[2023-Jun-02 17:35:57] [trace] [ JLink] - J-Link Script File: Executing InitTarget() +[2023-Jun-02 17:35:57] [trace] [ JLink] - InitTarget() end - Took 1.61ms +[2023-Jun-02 17:35:57] [trace] [ JLink] - InitTarget() end - Took 1.61ms +[2023-Jun-02 17:35:57] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 17:35:57] [trace] [ JLink] - Found SW-DP with ID 0x2BA01477 +[2023-Jun-02 17:35:57] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 17:35:57] [trace] [ JLink] - DPIDR: 0x2BA01477 +[2023-Jun-02 17:35:57] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 17:35:57] [trace] [ JLink] - CoreSight SoC-400 or earlier +[2023-Jun-02 17:35:57] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 17:35:57] [trace] [ JLink] - AP map detection skipped. Manually configured AP map found. +[2023-Jun-02 17:35:57] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 17:35:57] [trace] [ JLink] - AP[0]: AHB-AP (IDR: Not set) +[2023-Jun-02 17:35:57] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 17:35:57] [trace] [ JLink] - AP[0]: Core found +[2023-Jun-02 17:35:57] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - AP[0]: AHB-AP ROM base: 0xE00FF000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPUID register: 0x410FC241. Implementer code: 0x41 (ARM) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 17:35:57] [trace] [ JLink] - Found Cortex-M4 r0p1, Little endian. +[2023-Jun-02 17:35:57] [trace] [ JLink] - -- Max. mem block: 0x0003C880 +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 17:35:57] [trace] [ JLink] - FPUnit: 6 code (BP) slots and 2 literal slots +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED88) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 17:35:57] [trace] [ JLink] - CoreSight components: +[2023-Jun-02 17:35:57] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - ROMTbl[0] @ E00FF000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(64 bytes @ 0xE00FF000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE000EFE0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 17:35:57] [trace] [ JLink] - [0][0]: E000E000 CID B105E00D PID 000BB00C SCS-M7 +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0001FE0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 17:35:57] [trace] [ JLink] - [0][1]: E0001000 CID B105E00D PID 003BB002 DWT +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0002FE0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 17:35:57] [trace] [ JLink] - [0][2]: E0002000 CID B105E00D PID 002BB003 FPB +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0000FE0) +[2023-Jun-02 17:35:57] [trace] [ Client] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 17:35:57] [trace] [ Client] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ Client] - read_memory_descriptors +[2023-Jun-02 17:35:57] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 17:35:57] [trace] [ JLink] - [0][3]: E0000000 CID B105E00D PID 003BB001 ITM +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0040FE0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 17:35:57] [trace] [ JLink] - [0][4]: E0040000 CID B105900D PID 000BB9A1 TPIU +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(32 bytes @ 0xE0041FE0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 17:35:57] [trace] [ JLink] - [0][5]: E0041000 CID B105900D PID 000BB925 ETM +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 12.344ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORE_GetFound() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0xE0000FF +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.265ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 17:35:57] [trace] [ Worker] - Command read_device_info executed for 16 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:57] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.022ms +[2023-Jun-02 17:35:57] [trace] [ Worker] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - read_memory_descriptors +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_memory_descriptors +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:57] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.149ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.247ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ Client] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:35:57] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:35:57] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:35:57] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:35:57] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:35:57] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:35:57] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:35:57] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:35:57] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:35:57] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:35:57] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:35:57] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ Client] - read_page_sizes +[2023-Jun-02 17:35:57] [trace] [ Client] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.321ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Read memory description from family DLL: "Flash" [0x00000000-0x00100000] 256 pages (256x4kB) static ID0 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Read memory description from family DLL: "Code RAM" [0x00800000-0x00840000] 22 pages (16x4kB,6x32kB) static ID8388608 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Read memory description from family DLL: "FICR" [0x10000000-0x10001000] 1 pages (1x4kB) static ID268435456 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Read memory description from family DLL: "UICR" [0x10001000-0x10002000] 1 pages (1x4kB) static ID268439552 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Read memory description from family DLL: "XIP" [0x12000000-0x1A000000] 1 pages (1x131072kB) static ID301989888 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Read memory description from family DLL: "RAM" [0x20000000-0x20040000] 22 pages (16x4kB,6x32kB) static ID536870912 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.015ms +[2023-Jun-02 17:35:57] [trace] [ Worker] - Command read_memory_descriptors executed for 4 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:35:57] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:35:57] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:35:57] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:35:57] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:35:57] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:35:57] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:35:57] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:35:57] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.002ms returns 0x01 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:35:57] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.003ms +[2023-Jun-02 17:35:57] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:35:57] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - read_page_sizes +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_page_sizes +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:35:57] [trace] [ Worker] - Command read_page_sizes executed for 0 milliseconds with result 0 +[2023-Jun-02 17:35:57] [debug] [ Client] - erase +[2023-Jun-02 17:35:57] [debug] [ nRF52] - erase_file +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - erase +[2023-Jun-02 17:35:57] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:35:57] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.313ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.163ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.216ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.242ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.340ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:35:57] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Check image","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:35:57] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 17:35:57] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:35:57] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:35:57] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:35:57] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:35:57] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:35:57] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.287ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.316ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 3.241ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED90, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED90) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 08 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_write_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_WriteU32_64(0xE000ED98, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED98) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.639ms returns 0 (0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0xE000EDA0, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDA0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 27 00 02 07 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.319ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED9C, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED9C) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":10,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:35:57] [ info] [ nRF52] - Disabling BPROT. +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_disable_bprot +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.226ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.324ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:35:57] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:35:57] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:35:57] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 64.375ms +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.218ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.227ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.228ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:57] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":0,"message":"Erasing","operation":"erase_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:35:57] [ info] [ nRF52] - Erasing +[2023-Jun-02 17:35:57] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:35:57] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"block 1 of 2","operation":"erase_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:35:57] [ info] [ nRF52] - Erasing flash range [0x00000000-0x00006C94] +[2023-Jun-02 17:35:57] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:35:57] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.343ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.305ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.281ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.291ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.012ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.312ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.343ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.298ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.290ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.288ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.377ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.184ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.286ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.294ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.976ms returns 0 (0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.308ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.284ms returns 0 (0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.349ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.369ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.011ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.455ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.363ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.209ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.327ms returns 0 (0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:35:57] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.215ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.286ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.000ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.162ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.279ms returns 0 (0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.153ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.174ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00001000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.281ms returns 0 (0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.148ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.283ms returns 0 (0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:35:57] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.229ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.303ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.159ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.268ms returns 0 (0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.292ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.153ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00002000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.265ms returns 0 (0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.305ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.357ms returns 0 (0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:35:57] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.232ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.212ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.269ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.291ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.309ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.323ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.225ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.257ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.325ms returns 0 (0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00003000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.338ms returns 0 (0x00000000) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:57] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:57] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:57] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:57] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 17:35:57] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.351ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.358ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.351ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.008ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.359ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.334ms returns 0 (0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.304ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:35:58] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.214ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.219ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.304ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.239ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.197ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.207ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.307ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.357ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.299ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.295ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.320ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.296ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.004ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.314ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 1.218ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.295ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.307ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.264ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.173ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.206ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.210ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.007ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.301ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.341ms returns 0 (0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.359ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00004000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.359ms returns 0 (0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.334ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.288ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.220ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.324ms returns 0 (0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:35:58] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.297ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.341ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.282ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.309ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.283ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.179ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.267ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.297ms returns 0 (0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00005000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.289ms returns 0 (0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.318ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.329ms returns 0 (0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - erase_page +[2023-Jun-02 17:35:58] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.192ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.171ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.175ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.278ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.285ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.279ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.280ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_erase_page +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.177ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - halt +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.270ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.166ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000002) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.317ms returns 0 (0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.300ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.169ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E508, 0x00006000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E508) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.287ms returns 0 (0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.273ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.269ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.274ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ Client] - Command erase_file executed for 879 milliseconds with result 0 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.157ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.285ms returns 0 (0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.336ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000FFC, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000FFC) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: FF FF FF FF +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erasing non-volatile memory","duration":0,"message":"Erase successful","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:35:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Erase file","duration":790,"message":"Done erasing","operation":"erase_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.016ms +[2023-Jun-02 17:35:58] [trace] [ Worker] - Command erase_file executed for 879 milliseconds with result 0 +[2023-Jun-02 17:35:58] [debug] [ Client] - program +[2023-Jun-02 17:35:58] [debug] [ nRF52] - program +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:58] [ info] [ nRF52] - Programming file zephyr.hex +[2023-Jun-02 17:35:58] [debug] [ nRF52] - program_file +[2023-Jun-02 17:35:58] [ info] [ nRF52] - Allocate program buffers. +[2023-Jun-02 17:35:58] [ info] [ nRF52] - Check program file +[2023-Jun-02 17:35:58] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:35:58] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.246ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.151ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:58] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.222ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.155ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.183ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.182ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.005ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.311ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:35:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Checking image","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:35:58] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:35:58] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:35:58] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:35:58] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:35:58] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":929,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:35:58] [debug] [ nRF52] - is_bprot_enabled +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_is_bprot_enabled +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.190ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.217ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.211ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.189ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.208ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.293ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E808, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E808) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E818, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E818) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E828, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E828) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E838, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E838) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.317ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E848, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E848) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.268ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E858, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E858) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.277ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E868, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E868) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E878, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E878) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0xE000ED94, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000ED94) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 00 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.275ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":5,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:35:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":0,"message":"Programming","operation":"upload_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:35:58] [ info] [ nRF52] - Program flash. +[2023-Jun-02 17:35:58] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:35:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"block 1 of 2","operation":"upload_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_write +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - write +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_write +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.160ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.153ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000001) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.324ms returns 0 (0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.276ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_WriteMem(0x00000000, 0x6C94 Bytes, ...) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: C0 17 00 20 8D 17 00 00 91 54 00 00 61 17 00 00 ... +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_WriteMem(27796 bytes @ 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ Client] - Command program_file executed for 195 milliseconds with result 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 181.332ms returns 0x6C94 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.006ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.302ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_nvmc_config_control +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - write_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.193ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_WriteU32_64(0x4001E504, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0x4001E504) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.351ms returns 0 (0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_nvmc_wait_for_ready +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x4001E400, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x4001E400) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 01 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Programming image","duration":0,"message":"Write successful","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:35:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Program file","duration":183,"message":"Done programming","operation":"upload_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.021ms +[2023-Jun-02 17:35:58] [trace] [ Worker] - Command program_file executed for 195 milliseconds with result 0 +[2023-Jun-02 17:35:58] [debug] [ Client] - verify +[2023-Jun-02 17:35:58] [debug] [ nRF52] - verify +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.004ms returns 0x01 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:58] [ info] [ nRF52] - Verifying file zephyr.hex +[2023-Jun-02 17:35:58] [debug] [ nRF52] - just_verify_file +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Verify action is VERIFY_READ +[2023-Jun-02 17:35:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Check image","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:35:58] [debug] [ nRF52] - init_device_info +[2023-Jun-02 17:35:58] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.167ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.196ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.205ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.176ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.307ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.004ms returns TRUE +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.286ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.271ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:58] [debug] [ nRF52] - update_device_memory_list +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.223ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.152ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.186ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.249ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.172ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.221ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.281ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.306ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Memory list already constructed. Skipping. +[2023-Jun-02 17:35:58] [debug] [ nRF52] - read_device_info +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_read_device_version +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 255, AP Bank 15 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.178ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.213ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.204ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.188ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.170ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.243ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.002ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000130, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000130) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 08 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.272ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_u32 +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMemU32(0x10000134, 0x1 Items) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0x10000134) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: 05 00 00 00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.288ms returns 1 (0x1) +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_decode_device_version +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Device identified as NRF52840_xxAA_REV3 +[2023-Jun-02 17:35:58] [ info] [ nRF52] - Verify +[2023-Jun-02 17:35:58] [ info] [ nRF52] - Check memory ranges. +[2023-Jun-02 17:35:58] [debug] [ nRF52] - hex_file_is_valid +[2023-Jun-02 17:35:58] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Initialize device info","operation":"confirm_image","progressPercentage":20,"step":1} +[2023-Jun-02 17:35:58] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Check region 0 settings","operation":"confirm_image","progressPercentage":40,"step":2} +[2023-Jun-02 17:35:58] [debug] [ nRF52] - read_region_0_size_and_source. +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_read_region_0_size_and_source +[2023-Jun-02 17:35:58] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":1178,"message":"block 1 of 3","operation":"confirm_image","progressPercentage":60,"step":3} +[2023-Jun-02 17:35:58] [ info] [ nRF52] - {"amountOfSteps":5,"description":"Check image validity","duration":0,"message":"Finished","operation":"confirm_image","progressPercentage":100,"result":"success","step":5} +[2023-Jun-02 17:35:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":0,"message":"Verifying","operation":"verify_image","progressPercentage":66,"step":2} +[2023-Jun-02 17:35:58] [ info] [ nRF52] - Verify flash. +[2023-Jun-02 17:35:58] [debug] [ nRF52] - loop_image +[2023-Jun-02 17:35:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"block 1 of 2","operation":"verify_image","progressPercentage":33,"step":1} +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_read +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.273ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_invalidate_cache +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ExecCommand("InvalidateCache", ...). +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.003ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_ReadMem(0x00000000, 0x6C94 Bytes, ...) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_ReadMem(27840 bytes @ 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ Client] - Command verify_file executed for 196 milliseconds with result 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - -- Updating C cache (27840 bytes @ 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - -- Read from C cache (27796 bytes @ 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Data: C0 17 00 20 8D 17 00 00 91 54 00 00 61 17 00 00 ... +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 185.765ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verifying image","duration":0,"message":"Verify successful","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:35:58] [ info] [ nRF52] - {"amountOfSteps":3,"description":"Verify file","duration":186,"message":"Done verifying","operation":"verify_image","progressPercentage":100,"result":"success","step":3} +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.026ms +[2023-Jun-02 17:35:58] [trace] [ Worker] - Command verify_file executed for 196 milliseconds with result 0 +[2023-Jun-02 17:35:58] [debug] [ Client] - sys_reset +[2023-Jun-02 17:35:58] [debug] [ nRF52] - sys_reset +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.003ms returns 0x01 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_sys_reset +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:58] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.164ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.185ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.187ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.202ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.238ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.180ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.156ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.199ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.259ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.181ms returns 0 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - sys_reset +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_halt +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_Halt() +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.001ms returns 0x00 +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [debug] [SeggerBackend] - ---just_sys_reset +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) +[2023-Jun-02 17:35:58] [trace] [ JLink] - - 0.002ms returns JLINKARM_CM3_RESET_TYPE_NORMAL +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:58] [trace] [ JLink] - JLINK_Reset() +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:35:58] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:35:58] [trace] [ JLink] - Reset: Halt core after reset via DEMCR.VC_CORERESET. +[2023-Jun-02 17:35:58] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:35:58] [trace] [ JLink] - Reset: Reset device via AIRCR.SYSRESETREQ. +[2023-Jun-02 17:35:58] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000ED0C) +[2023-Jun-02 17:35:59] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:35:59] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:35:59] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:35:59] [trace] [ Client] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 17:35:59] [debug] [ Client] - go +[2023-Jun-02 17:35:59] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDF0) +[2023-Jun-02 17:35:59] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0002000) +[2023-Jun-02 17:35:59] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE000EDFC) +[2023-Jun-02 17:35:59] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:35:59] [trace] [ JLink] - - 63.679ms +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:59] [trace] [ JLink] - - 0.002ms +[2023-Jun-02 17:35:59] [trace] [ Worker] - Command sys_reset executed for 66 milliseconds with result 0 +[2023-Jun-02 17:35:59] [debug] [ nRF52] - go +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:59] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:59] [debug] [ nRF52] - Just_go +[2023-Jun-02 17:35:59] [debug] [ nRF52] - Just_readback_status +[2023-Jun-02 17:35:59] [debug] [ nRF52] - Just_is_ctrl_ap_available +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:59] [trace] [ JLink] - - 0.198ms returns 0 +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:35:59] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:35:59] [trace] [ JLink] - - 0.161ms returns 0 +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 15 +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x010000F0) +[2023-Jun-02 17:35:59] [trace] [ JLink] - - 0.168ms returns 0 +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:59] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:59] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:59] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:59] [trace] [ JLink] - - 0.203ms returns 0 +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:59] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:59] [trace] [ JLink] - - 0.191ms returns 0 +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:59] [trace] [ JLink] - Value=0x02880000 +[2023-Jun-02 17:35:59] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - Select AP 1, DP Bank 0, AP Bank 0 +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x01000000) +[2023-Jun-02 17:35:59] [trace] [ JLink] - - 0.149ms returns 0 +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:59] [trace] [ Client] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 17:35:59] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:59] [trace] [ JLink] - - 0.201ms returns 0 +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:59] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:59] [trace] [ JLink] - - 0.194ms returns 0 +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:59] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:59] [trace] [ JLink] - - 0.200ms returns 0 +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - read_access_port_register +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_read_access_port_register +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_select_access_port_register +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(AP reg 0x03) +[2023-Jun-02 17:35:59] [trace] [ JLink] - Value=0x00000001 +[2023-Jun-02 17:35:59] [trace] [ JLink] - - 0.195ms returns 0 +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:59] [ info] [ nRF52] - Protection status read as NONE +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - go +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_connect_to_device +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:35:59] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_is_halted +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_IsHalted() +[2023-Jun-02 17:35:59] [trace] [ JLink] - - 0.002ms returns TRUE +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_go +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_GoEx(MaxEmulInsts = 0, Flags = 0x01) +[2023-Jun-02 17:35:59] [trace] [ JLink] - CPU_ReadMem(4 bytes @ 0xE0001000) +[2023-Jun-02 17:35:59] [trace] [ JLink] - CPU_WriteMem(4 bytes @ 0xE0001004) +[2023-Jun-02 17:35:59] [trace] [ JLink] - - 1.012ms +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:59] [trace] [ JLink] - - 0.001ms +[2023-Jun-02 17:35:59] [trace] [ Worker] - Command go executed for 3 milliseconds with result 0 +[2023-Jun-02 17:35:59] [debug] [ nRF52] - close +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - is_connected_to_emu +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_IsOpen() +[2023-Jun-02 17:35:59] [trace] [ JLink] - - 0.001ms returns 0x01 +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_Lock() +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - close +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - disconnect_from_emu +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_disconnect_from_emu +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - is_connected_to_device +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_IsConnected() +[2023-Jun-02 17:35:59] [trace] [ JLink] - - 0.001ms returns TRUE +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_is_debug_region_powered +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_read_debug_port_register +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_CORESIGHT_WriteAPDPReg(DP reg 0x02, 0x00000000) +[2023-Jun-02 17:35:59] [trace] [ JLink] - - 0.165ms returns 0 +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_CORESIGHT_ReadAPDPReg(DP reg 0x01) +[2023-Jun-02 17:35:59] [trace] [ JLink] - Value=0xF0000040 +[2023-Jun-02 17:35:59] [trace] [ JLink] - - 0.150ms returns 0 +[2023-Jun-02 17:35:59] [trace] [ JLink] - JLINK_HasError() +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - Disable trace before closing connection. +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_write_u32 +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_write_debug_port_register +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - ---just_select_debug_port_register +[2023-Jun-02 17:35:59] [debug] [SeggerBackend] - Select AP 255, DP Bank 0, AP Bank 255 diff --git a/prj.conf b/prj.conf index d516a57..05557f2 100644 --- a/prj.conf +++ b/prj.conf @@ -1,4 +1,6 @@ -CONFIG_BUILD_OUTPUT_UF2=y CONFIG_GPIO=y + +CONFIG_SPI=y CONFIG_SPI_ASYNC=y -CONFIG_SPI_PL022_INTERRUPT=y + +CONFIG_SPI_SLAVE=y diff --git a/src/main.c b/src/main.c index 0582c3c..47de362 100644 --- a/src/main.c +++ b/src/main.c @@ -1,44 +1,207 @@ #include -#include #include #include +#include #include +#include -// SPI Master Interface on SPI1 of the rp2040 -const struct device* spi1_dev = DEVICE_DT_GET(DT_NODELABEL(spi1)); +/* 1000 msec = 1 sec */ +#define SLEEP_TIME_MS 1000 -// SPI but broken out -#define EPD_RST_PIN = 12; -#define EEPD_DC_PIN = 8; -#define EEPD_BUSY_PIN = 13; -#define EEPD_CS_PIN = 9; -#define EEPD_CLK_PIN = 10; -#define EEPD_MOSI_PIN = 11; - -// GPIO - so we can have a status LED +/* The devicetree node identifier for the "led0" alias. */ #define LED0_NODE DT_ALIAS(led0) + +#define MY_SPI_MASTER DT_NODELABEL(my_spi_master) +#define MY_SPI_SLAVE DT_NODELABEL(my_spi_slave) + +// SPI master functionality +const struct device *spi_dev; +static struct k_poll_signal spi_done_sig = K_POLL_SIGNAL_INITIALIZER(spi_done_sig); + +struct spi_cs_control spim_cs = { + .gpio = SPI_CS_GPIOS_DT_SPEC_GET(DT_NODELABEL(reg_my_spi_master)), + .delay = 0, +}; + +static void spi_init(void) +{ + spi_dev = DEVICE_DT_GET(MY_SPI_MASTER); + if(!device_is_ready(spi_dev)) { + printk("SPI master device not ready!\n"); + } + if(!device_is_ready(spim_cs.gpio.port)){ + printk("SPI master chip select device not ready!\n"); + } +} + +static const struct spi_config spi_cfg = { + .operation = SPI_WORD_SET(8) | SPI_TRANSFER_MSB | + SPI_MODE_CPOL | SPI_MODE_CPHA, + .frequency = 4000000, + .slave = 0, + .cs = &spim_cs, +}; + +static int spi_write_test_msg(void) +{ + static uint8_t counter = 0; + static uint8_t tx_buffer[2]; + static uint8_t rx_buffer[2]; + + const struct spi_buf tx_buf = { + .buf = tx_buffer, + .len = sizeof(tx_buffer) + }; + const struct spi_buf_set tx = { + .buffers = &tx_buf, + .count = 1 + }; + + struct spi_buf rx_buf = { + .buf = rx_buffer, + .len = sizeof(rx_buffer), + }; + const struct spi_buf_set rx = { + .buffers = &rx_buf, + .count = 1 + }; + + // Update the TX buffer with a rolling counter + tx_buffer[0] = counter++; + printk("SPI TX: 0x%.2x, 0x%.2x\n", tx_buffer[0], tx_buffer[1]); + + // Reset signal + k_poll_signal_reset(&spi_done_sig); + + // Start transaction + int error = spi_transceive_async(spi_dev, &spi_cfg, &tx, &rx, &spi_done_sig); + if(error != 0){ + printk("SPI transceive error: %i\n", error); + return error; + } + + // Wait for the done signal to be raised and log the rx buffer + int spi_signaled, spi_result; + do{ + k_poll_signal_check(&spi_done_sig, &spi_signaled, &spi_result); + } while(spi_signaled == 0); + printk("SPI RX: 0x%.2x, 0x%.2x\n", rx_buffer[0], rx_buffer[1]); + return 0; +} + +// SPI slave functionality +const struct device *spi_slave_dev; +static struct k_poll_signal spi_slave_done_sig = K_POLL_SIGNAL_INITIALIZER(spi_slave_done_sig); + +static const struct spi_config spi_slave_cfg = { + .operation = SPI_WORD_SET(8) | SPI_TRANSFER_MSB | + SPI_MODE_CPOL | SPI_MODE_CPHA | SPI_OP_MODE_SLAVE, + .frequency = 4000000, + .slave = 0, +}; + +static void spi_slave_init(void) +{ + spi_slave_dev = DEVICE_DT_GET(MY_SPI_SLAVE); + if(!device_is_ready(spi_dev)) { + printk("SPI slave device not ready!\n"); + } +} + +static uint8_t slave_tx_buffer[2]; +static uint8_t slave_rx_buffer[2]; +static int spi_slave_write_test_msg(void) +{ + static uint8_t counter = 0; + + + const struct spi_buf s_tx_buf = { + .buf = slave_tx_buffer, + .len = sizeof(slave_tx_buffer) + }; + const struct spi_buf_set s_tx = { + .buffers = &s_tx_buf, + .count = 1 + }; + + struct spi_buf s_rx_buf = { + .buf = slave_rx_buffer, + .len = sizeof(slave_rx_buffer), + }; + const struct spi_buf_set s_rx = { + .buffers = &s_rx_buf, + .count = 1 + }; + + // Update the TX buffer with a rolling counter + slave_tx_buffer[1] = counter++; + printk("SPI SLAVE TX: 0x%.2x, 0x%.2x\n", slave_tx_buffer[0], slave_tx_buffer[1]); + + // Reset signal + k_poll_signal_reset(&spi_slave_done_sig); + + // Start transaction + int error = spi_transceive_async(spi_slave_dev, &spi_slave_cfg, &s_tx, &s_rx, &spi_slave_done_sig); + if(error != 0){ + printk("SPI slave transceive error: %i\n", error); + return error; + } + return 0; +} + +static int spi_slave_check_for_message(void) +{ + int signaled, result; + k_poll_signal_check(&spi_slave_done_sig, &signaled, &result); + if(signaled != 0){ + return 0; + } + else return -1; +} + +/* + * A build error on this line means your board is unsupported. + * See the sample documentation for information on how to fix this. + */ static const struct gpio_dt_spec led = GPIO_DT_SPEC_GET(LED0_NODE, gpios); void main(void) { - while (!device_is_ready(spi1_dev)) { - } + int ret; if (!device_is_ready(led.port)) { return; } - int ret = gpio_pin_configure_dt(&led, GPIO_OUTPUT_ACTIVE); + ret = gpio_pin_configure_dt(&led, GPIO_OUTPUT_ACTIVE); if (ret < 0) { return; } + spi_init(); + + spi_slave_init(); + + printk("SPI master/slave example started\n"); + + spi_slave_write_test_msg(); + while (1) { + spi_write_test_msg(); ret = gpio_pin_toggle_dt(&led); if (ret < 0) { + printk("Error toggling LED pin\n"); return; } - k_msleep(500); - } -} + k_msleep(SLEEP_TIME_MS); + if(spi_slave_check_for_message() == 0){ + // Print the last received data + printk("SPI SLAVE RX: 0x%.2x, 0x%.2x\n", slave_rx_buffer[0], slave_rx_buffer[1]); + + // Prepare the next SPI slave transaction + spi_slave_write_test_msg(); + } + } + printk("SPI master/slave example finished\n"); +} diff --git a/zephyr.hex b/zephyr.hex new file mode 100644 index 0000000..f0e8e61 --- /dev/null +++ b/zephyr.hex @@ -0,0 +1,1743 @@ +:10000000C01700208D1700009154000061170000F8 +:100010006117000061170000611700000000000078 +:10002000000000000000000000000000C9130000F4 +:100030006117000000000000751300006117000048 +:10004000791400007914000079140000791400007C +:10005000791400007914000079140000791400006C +:10006000791400007914000079140000791400005C +:10007000791400007914000079140000791400004C +:10008000791400007914000079140000791400003C +:10009000791400007914000079140000791400002C +:1000A000791400007914000079140000791400001C +:1000B000791400007914000079140000791400000C +:1000C00079140000791400007914000079140000FC +:1000D00079140000791400007914000079140000EC +:1000E00079140000791400007914000079140000DC +:1000F00079140000791400007914000079140000CC +:1001000053B94AB9002908BF00281CBF4FF0FF317E +:100110004FF0FF3000F00CB8ADF1080C6DE904CEE3 +:1001200000F008F8DDF804E0DDE9022304B07047D0 +:10013000704700BF2DE9F04786468C460846089E6A +:10014000154674461946002B40F0C2808542B2FA2B +:1001500082F245D94AB1C2F1200300FA02FC2EFA1C +:1001600003F3954043EA0C0C94404FEA154EA8B2B5 +:10017000BCFBFEF8230C0EFB18CC08FB00F943EA8D +:100180000C43994528D9EB1808F1FF3704D299455B +:1001900002D9A8F102072B44A3EB0903A4B2B3FBD5 +:1001A000FEFC0EFB1C330CFB00F044EA0344A042AF +:1001B00014D92C190CF1FF3304D2A04202D9ACF1AE +:1001C00002032C44241A43EA07401EB1D440002302 +:1001D00034607360BDE8F0874746DDE76346F1E7CA +:1001E00092BB431B01214FEA154EAFB2B3FBFEFC9D +:1001F000200C0EFB1C330CFB07F840EA0343984528 +:1002000062D9EB180CF1FF3004D2984502D9ACF159 +:1002100002002B44A3EB0803A4B2B3FBFEFC0EFBCD +:100220001C330CFB07F744EA0344A7424ED92C19B0 +:100230000CF1FF3304D2A74202D9ACF102032C44E3 +:10024000E41B43EA0040C0E7C2F1200320FA03F1B7 +:10025000954090402EFA03F303434FEA154EAFB298 +:10026000B1FBFEFC0EFB1C10190C0CFB07F841EA5D +:100270000041884504FA02F422D969180CF1FF30D4 +:1002800004D2884502D9ACF102002944A1EB08014F +:100290009BB2B1FBFEFC0EFB1C110CFB07F743EA03 +:1002A00001439F420ED9EB180CF1FF3104D29F425B +:1002B00002D9ACF102012B44DB1B41EA004192E779 +:1002C0006046E3E76146F7E76046A3E76346B7E7C2 +:1002D000834206D916B9002108467BE7C6E900E04B +:1002E000F9E7B3FA83F78FB9834201D3724508D88F +:1002F000BEEB020460EB030301209C461EB9002103 +:1003000068E73846FAE7C6E9004CF8E7C7F1200C81 +:10031000BB4022FA0CF41C432EFA0CF120FA0CF329 +:10032000B84001434FEA14490EFA07F5B3FBF9F858 +:100330001FFA84FE09FB18300B0C08FB0EFA43EA87 +:1003400000439A4502FA07F240D9E31808F1FF305A +:1003500004D29A4502D9A8F102002344A3EB0A0370 +:1003600089B2B3FBF9F809FB183308FB0EFE41EA2A +:1003700003418E452CD9611808F1FF3304D28E4514 +:1003800002D9A8F10203214443EA0040A0FB0298ED +:10039000A1EB0E014145CE46434602D306D14D4561 +:1003A00004D2B9EB020E68EB04030138002EA6D08C +:1003B000B5EB0E0261EB030101FA0CFC22FA07F324 +:1003C0004CEA0303F940C6E9003198E74046C5E727 +:1003D0004346D9E710B5184B93E803008AB002AA48 +:1003E00082E80300D3E90201144B0492012406AA17 +:1003F00082E80300CDE908241A7811480594111900 +:100400001970104B19785A7004F0DBFE0E4C204620 +:1004100005F030FF0D4B0E4A18680E4983680092B4 +:1004200001945C6804AA08ABA047014610B10A48D1 +:1004300004F0C7FE0AB010BDE0650000B80500205A +:1004400000680000C005002000000020C00300205C +:10045000615B0000F86500001E6800002DE9F04FA8 +:100460008DB04D4C204605F04AFD002800F09180EB +:100470002269A168136843F4005313600B68474A6C +:100480000D21204698470028C0F28380444D4548FE +:10049000286005F034FD10B9434804F092FE434B48 +:1004A000186805F02CFD10B9414804F08AFE414B54 +:1004B000414A28681A6005F022FD10B93F4804F04F +:1004C00080FE3F483F4E404FDFF8009104F079FE38 +:1004D000FFF780FF99F800103D48049604AB022214 +:1004E00006930DF1200A0123CDE90737CDE90AA3D0 +:1004F00005920992CB18727889F80030317004F0B7 +:1005000060FEDFF8D080404605F0B4FE2868324A2D +:1005100083680092CDF80480D3F804B02F490AAB69 +:1005200006AAD847014680B12D4804F04AFEA368C8 +:1005300019485B694FF400519847002813DA29489D +:100540000DB0BDE8F04F04F03CBE03AA02A940463E +:1005500005F093FE029B002BF7D07A783978224879 +:1005600004F02FFEE3E700214FF4004004F0C4FA4A +:100570001E480AAA514605F080FE089B002BA9D010 +:100580001B4B1C485A78197804F01BFEFFF722FF1A +:10059000A0E70DB0BDE8F08F606300000100060029 +:1005A000C4030020906300003E680000100000209B +:1005B0005C680000C0030020A8630000866800009B +:1005C000A3680000BB050020B9050020BD05002080 +:1005D000C56800001C000020615B00000C66000084 +:1005E000DD6800000F690000F768000000000020CF +:1005F000BE05002027690000014B1B68184700BF9B +:100600002C000020014B1860704700BF2C00002018 +:1006100007B50B46002102460091034800F014F98B +:1006200003B05DF804FB00BFF90500002DE9F047B9 +:10063000058B04462807904611D4022905F00705CA +:1006400040F0CD80204604F0D3FD78B10138218BF5 +:10065000042811D8DFE800F0C3106D85950001294A +:100660000CBF45F0100545F02005258388F311885F +:10067000BFF36F8FBDE8F08701F0070AAA4500F0CD +:10068000A6800027B9463E46A368002B00F0BD8037 +:1006900041F00801218388F31188BFF36F8FA168AF +:1006A000002900F0BB800D68002900F0B780D1F868 +:1006B0000480334652462046C047002D76D02B6832 +:1006C00029461D46F0E701F007035A1F012A1BD8EF +:1006D000002221F00701062B276889B2C4E9002215 +:1006E00009D13B4603E0628B013262831B68002B19 +:1006F000F9D141F002012183204604F079FD002860 +:100700007BD041F0200177E0042B0AD121F00701D2 +:1007100089B22183204604F06BFD10B141F0200125 +:100720002183218B01F0070AAA4550D00027B94642 +:10073000AAE7236921F0070141F00601062DD3F84D +:10074000009021832DD1B9F1000F40D041F0080174 +:10075000218388F31188BFF36F8F3A492046C84739 +:1007600029E021F00701236941F0040189B2042D39 +:10077000D3F804902183E6D000273E464FF0040AC8 +:1007800082E721F00701236941F0050189B2052DB7 +:10079000D3F808902183D6D000273E464FF0050AB3 +:1007A00072E700273E464FF0060A6DE72B4687E7C3 +:1007B000B9F1000FD1D14FF02003EFF3118883F38B +:1007C0001288BFF36F8F238B23F008032383258BBD +:1007D000EA062ED525F01003238305F00705666988 +:1007E000218B002EBFF66FAF00232768C4E90033CA +:1007F00021F0070141F001012183218B01F0070A5B +:10080000AA454FF000097FF43FAF002F9BD041F085 +:100810000801218388F31188BFF36F8F002FC7D0A1 +:100820003D68394633465246204604F00DFD2F46BA +:10083000F4E7AB067FF51AAF25F02003238305F01C +:100840000705FFE6755200002DE9F04F814695B08F +:100850008B4617461C460025387808B9284658E3C9 +:100860007B1C2528039306D05946C8470028C0F2B0 +:1008700050830135FBE1182200210EA804F02BFE65 +:100880007B78252B7DD00023781C98469E469C467D +:100890001E46014610F8012B2B2A00F0A18000F221 +:1008A0009880202A00F09F80232A00F09F802BB19F +:1008B0009DF8403043F040038DF84030B8F1000F10 +:1008C00005D09DF8403043F020038DF84030BEF154 +:1008D000000F05D09DF8403043F010038DF84030F4 +:1008E000BCF1000F05D09DF8403043F008038DF8AF +:1008F00040302EB19DF8403043F004038DF8403075 +:100900009DF8403003F04400442803D16FF3861370 +:100910008DF840309DF840302A2A43F080038DF84E +:1009200040307FD19DF8412042F001024B1C8DF8F0 +:1009300041201A782E2A9DF841200CBF0121002168 +:1009400061F341028DF8412078D15A782A2A6ED07D +:10095000013300224FF00A0C194611F8010BA0F1E7 +:100960003006092E40F295809DF840101292C1F396 +:10097000400040EAD2700A4660F341028DF8402000 +:100980005CE0BA1C03928DF843309DF84130DA07E1 +:1009900040F12E8154F8048BB8F1000F07DA9DF86E +:1009A000402042F004028DF84020C8F100085E07A4 +:1009B00040F1278154F804ABBAF1000F80F2268190 +:1009C0009DF841306FF341038DF841304FF0FF3A0D +:1009D0001CE12D2A0DD0302A7FF469AF012358E79E +:1009E0004FF0010C55E74FF0010E52E74FF00108B0 +:1009F0004FE701264DE70EFB0262303A03461846E8 +:100A000010F8016BA6F1300CBCF1090FF3D9994233 +:100A10008FD09DF840101192D20F62F341018DF8F2 +:100A2000401086E70B4600224FF00A0EE7E79DF8DC +:100A3000412042F004028DF8412002331A786C2ADA +:100A400047D02BD8682A31D06A2A4BD04C2A51D0B3 +:100A50001A4612F8013B0392782B9DF841208DF83D +:100A6000433000F2BE806D2B51D8692B00F2B98063 +:100A7000572B67D8412B03D0453B022B00F2B180A6 +:100A80009DF84230042262F302038DF842300123C4 +:100A900073E00CFB0202303A0B465DE7742A25D066 +:100AA0007A2AD5D19DF8412006210CE05A78682A8F +:100AB0009DF8412006D1012161F3C6028DF8412045 +:100AC0000233C5E7022161F3C6028DF841200133EC +:100AD000BEE75A786C2A9DF8412001D10421EBE74A +:100AE0000321F0E79DF841200521ECE79DF8412026 +:100AF0000721E8E7BDF8402022F4F04222F002028C +:100B000042F4804242F00202ADF84020DFE76E3B43 +:100B1000D9B201238B4040F282410B4237D113F00E +:100B2000240F51D1D8075CD59DF84230032161F3E1 +:100B300002038DF8423002F07803A3F140014B42EA +:100B40004B411AE0A3F15801C9B2012000FA01F1AA +:100B500011F4624F94D140F6010631421DD111F4D7 +:100B6000043F3ED09DF8423060F3020302F0780269 +:100B7000402A8DF8423034D000239DF84020C2F343 +:100B800040010B4363F341028DF84020FDE69DF8E0 +:100B90004230022161F30203E8E79DF8421002208F +:100BA00002F0780260F30201402A8DF8421002BF81 +:100BB0009DF8401041F001018DF84010632BDBD10E +:100BC000131E18BF0123D8E79DF84230032161F3BB +:100BD000020312F0780F8DF8423014BF0123002376 +:100BE000CBE79DF8403043F001038DF84030C3E778 +:100BF0009DF94020002AB4BFDDF844804FF0FF3853 +:100C0000D5E698077FF5E2AEDDF848A09DF84110E3 +:100C10000023CDE911339DF8423003F00703012B87 +:100C2000C1F3C30133D1CB1E042B04D8DFE803F09A +:100C3000214646212100236801294FEAE372CDE9CC +:100C40000E321CD19DF93830DA17CDE90E3204345A +:100C50009DF8403013F0030650D0039B3A465946A6 +:100C6000484604F0F3FB0028C0F253810544039F7B +:100C7000F2E554F8043BDA17CDE90E32E8E7022931 +:100C8000E5D11AB243F3C033CDE90E23DFE7022BDF +:100C900024D1CB1E042B04D8DFE803F01810101861 +:100CA0001800012954F8043B4FF0000214D0022927 +:100CB000CDE90E32CCD19BB20E93C9E7073424F0B4 +:100CC0000704F4E80223CDE90E23C1E754F8043BFE +:100CD0000E9300230F93BBE7DBB2CDE7042B08D1C3 +:100CE000073424F00704D4E900230834CDE90E23A7 +:100CF000AEE7032BACD154F8043BDDE79DF843008D +:100D00007828B4D862281CD825283FF4ADAD5828DF +:100D1000ADD10DF136030093DDE90E0108AB10AA49 +:100D200004F04EFBBAF1000F074680F29A80002FC4 +:100D30009DD00DF13603D81B002E00F0C18001308C +:100D4000BEE06338152892D801A252F820F000BF07 +:100D5000250E0000370E00006F0C00006F0C000025 +:100D60006F0C00006F0C0000370E00006F0C0000CD +:100D70006F0C00006F0C00006F0C0000C50E00002F +:100D80005D0E0000830E00006F0C00006F0C000071 +:100D9000A90D00006F0C00005D0E00006F0C00003C +:100DA0006F0C00005D0E0000BAF1000F0E9F35DBE6 +:100DB0005146384604F09BFB07EB000A002F3FF436 +:100DC00056AF00269DF8423013F01002059200F055 +:100DD000938002305B06119A48BF129B0492104424 +:100DE00048BFC018B8F1000F40F3A0809DF8402024 +:100DF000A8EB0008C2F380035007069300F1968029 +:100E0000510640F189803EB159463046C847002816 +:100E10007FDB069B01351E4630227EE0384604F01B +:100E200048FBC9E70E9B8DF82030002608AF0DF176 +:100E3000210A0120C6E719075CBFC3F300135E0156 +:100E4000DDE90E2348BF2B26002BBFF662AF5242CE +:100E500063EB4303CDE90E232D265AE7002658E71E +:100E600000269DF840200DF13603DB1B6FF3861240 +:100E70009A458DF840207FF65AAFAAEB03031193F1 +:100E800055E70E9890B30DF13603009310AA08AB06 +:100E9000002104F095FABDF8423003F0EF0343F46B +:100EA000F04343F01003BAF1000F0746ADF84230AB +:100EB000D6DA00283FF4DBAE0DF13603181A00260F +:100EC0009A467FE70E9B07293FF6D1AEDFE801F097 +:100ED0000C04060C08080C0C1D70C8E61D80C6E644 +:100EE000EA17C3E90052C2E61D60C0E62E4F06466F +:100EF00007F1050A052065E71A0748BF013069E7D1 +:100F00000793104606925946C8470028DDE9062394 +:100F100004DA15B0BDE8F08F2022434619460029B7 +:100F200003F1FF33ECDC45446D1A98462EB1594667 +:100F30003046C8470028ECDB01359DF84230DA0620 +:100F400001D41B0705D559463020C8470028E0DBEF +:100F50000135059B33B19DF843005946C847002829 +:100F6000D7DB0135049E2E4405E059463020C847A2 +:100F70000028CEDB0135731B002BF6DC53463A46C6 +:100F80005946484604F062FA0028C2DB0544A844EA +:100F9000A8EB0503002B7FF76AAE59462020C8470F +:100FA0000028B6DB0135F3E75669000001F074BF95 +:100FB0002DE9F84305464FF02003EFF3118683F344 +:100FC0001288BFF36F8F0E4B0E4F1C68DFF838800E +:100FD0004FF00C092CB986F31188BFF36F8FBDE871 +:100FE000F883D4E90123002D18BF13462BB198F8DC +:100FF000102009FB02F2B85C98472468EAE700BFBA +:10100000E0030020D40300207C05002070B5194BBC +:101010001C7CBFF35B8F04F01F0301229A40164B28 +:10102000610903EB8103D04353E8001F01EA000587 +:1010300043E80056002EF7D1BFF35B8F0A4213D06E +:101040000E4B0F4D8BB10C236343EA18E85C5178CB +:1010500004F062FA0020FFF7ABFF0C235C432A196F +:1010600000232B51C2E9013370BD83F31188BFF314 +:101070006F8FEFE77C050020E80300201955000082 +:10108000D40300202DE9F041354B07461D7C4FF07D +:101090002003EFF3118883F31288BFF36F8F0C24C2 +:1010A000304B314E6C431A19195D00294CD007CAD8 +:1010B00006EB040C8CE8070000221A5588F311880F +:1010C000BFF36F8F0C236B43F218F05C002839D00C +:1010D0007B1C10D0D2F808C0244C254A4FF40040A5 +:1010E0000021ECFB004100232046FFF709F8012115 +:1010F000381A01F07BFE03F045FC0120FFF758FF92 +:10110000BFF35B8F1B4B6A0903EB820305F01F01E2 +:1011100001228A4053E8000F104343E800010029F0 +:10112000F8D1BFF35B8F144B3BB10C2303FB05F0ED +:101130003318305C597804F0E3F9FFF767FF03F0E8 +:1011400035FC0120BDE8F0810146284600F016F884 +:101150000028B3D007C8344484E80700AEE700BFD6 +:101160007C050020C8030020D40300203F420F006C +:1011700040420F00E8030020015500002DE9F04F28 +:1011800085B00E4603A900F043F81E4B039DD3F82B +:1011900000A0DFF87480431E1BB203EB4303044638 +:1011A00005EB83054FF400474FF0000B24B9A1462F +:1011B000484605B0BDE8F08F6868144AC4465946F1 +:1011C000E0FB07C100236046FEF79AFF0190A86884 +:1011D0000E4AC4465946E0FB07C100236046FEF7AD +:1011E0008FFFBAF1FF3FA94601D0824505D9731C94 +:1011F000DED0019B1844B042DAD9013CA4B20C3DC8 +:10120000D4E700BF300000203F420F0040420F00F3 +:1012100008B9024B0B600020704700BF2066000039 +:10122000014910220A60704710ED00E072B640409C +:1012300080F31188BFF36F8FBFF34F8F30BF62B65B +:10124000BFF36F8F704700BF72B6494081F31188BA +:10125000BFF34F8F20BF80F3118862B6704700BF85 +:1012600040B2002807DB044A4109012300F01F00B7 +:10127000834042F82130704700E100E040B200288E +:101280000CDB4309064900F01F0020330122824095 +:1012900041F82320BFF34F8FBFF36F8F704700BF1C +:1012A00000E100E0054B420900F01F0053F8222046 +:1012B000012303FA00F01040704700BF00E100E096 +:1012C00040B20028A8BF00F1604001F10101B8BFA1 +:1012D000064B4FEA4111ACBF00F5614000F00F0032 +:1012E000C9B2B4BF195480F80013704714ED00E080 +:1012F00030BFFFF7FDBF00BF0F4A08B50F4B22F00C +:101300007F029A60BFF34F8FBFF36F8FD3F88820AF +:1013100022F47002C3F88820EFF3148323F004034F +:1013200083F31488BFF36F8F02F072FF03F076FC33 +:1013300000F020FA02F0B0FF0000000000ED00E035 +:10134000094A0A4993680968D967094998674B6847 +:1013500043F080534B60002383F31188BFF36F8FFA +:101360009368D86F704700BF7C050020E4670000D9 +:1013700000ED00E012498A684FF030001044EFF3AE +:10138000098C80E8F01F202080F31288BFF36F8F54 +:101390000C4F4FF000668A698A603E60906F0023B0 +:1013A000936780F3118804B5104600F029FABDE870 +:1013B000044002F1300090E8F01F8CF30988704778 +:1013C0007C05002004ED00E01EF0040F0CBFEFF3DD +:1013D0000880EFF30980816911F8021C0229FFD00F +:1013E00001B504F04DF801BD42F8203C009B42F8E5 +:1013F0001C3C0A49019B42F8183C029B42F8143CF1 +:1014000021F001014FF0807342F8043C42F8081CBF +:101410000023203A02658367704700BFDD5100005A +:10142000094A0346906870B113F1160F806E05D01B +:10143000A0F140029A4205D8834203D2814228BFDC +:1014400000207047002070477C05002008B5094B3C +:101450000D461446986000F0D3F9204685F30988BC +:10146000002163B681F31188BFF36F8F0022002340 +:1014700003F0B4FE7C05002001B572B60B4A50693A +:1014800000281EBF0021516104F07AFD62B6EFF31F +:101490000580A0F110004FEAC0000549014409C9C8 +:1014A0009847BDE801400349084700007C0500203B +:1014B000C0630000B9140000044B99689869884221 +:1014C00003D003494FF080520A6070477C0500202A +:1014D00004ED00E070B5264B15469A6A12F0100F25 +:1014E0009A6A14BF1124102412F0080F9A6A18BFC8 +:1014F0001224920706460AD5586B9A6A140634D508 +:1015000019B19A6A22F080029A62132401E06FF006 +:101510001500174B9A6A12F0010F9A6A18BF14242B +:1015200012F0200F9A6A18BF1524D20602D49B6AC3 +:101530009B070AD50E4B5B68190506D53146FFF7A8 +:101540006FFF10B180F309880224094B9A6A920652 +:1015500042BF5A6A22F400525A629A6A42F0FF026B +:101560009A6200232B70204670BD6FF01500CCE707 +:1015700000ED00E0134B9A6A12F0007F9A6A14BFE4 +:101580001E201D2012F0807F9A6A18BF1F2012F4BF +:10159000002F9A6A18BF212012F4802F9A6A18BF70 +:1015A000222012F4003F9A6A18BF232012F4803FD1 +:1015B0009A6A6FEA02426FEA12429A6218BF2420C6 +:1015C000704700BF00ED00E010B5194B0246986A65 +:1015D0009C6A10F4805F14BF1720162014F4006F6B +:1015E0009C6A18BF1820A40509D5986B986A000456 +:1015F00004D51AB19A6A22F400429A6219200C4B5F +:101600009A6A12F4806F9A6A18BF1A20D2050CD415 +:101610009B6A13F4005F18BF1C20054A936A43F4C9 +:101620007F43936200230B7010BD1B20F5E700BFC2 +:1016300000ED00E070B5454B5B688AB00546C3F32A +:101640000803002686F31188BFF36F8F02F07F40F6 +:10165000B0F17F4F11D102F00C0008280DD0100717 +:101660004CBF0D4601260022033B8DF80720032BBB +:1016700005D8DFE803F01E5D615A3546F3E7002424 +:101680009DF807309BB92022294602A803F018FFD5 +:10169000099B002E54D0C3F3080222B96FEA5323EA +:1016A0006FEA4323099302A9204603F0E7FE0AB03C +:1016B00070BD264BDA6A9107E1D4DA6A002ADEDBD4 +:1016C000DA6A5200DBD55A69A96942F480725A611C +:1016D000BFF34F8FBFF36F8F5A6931F8021C22F4AA +:1016E00080725A61BFF34F8FBFF36F8F4DF6027256 +:1016F00091420AD09A6AD2B24AB10DF10702012191 +:101700002846FFF7E7FE0446BAE72C68B8E79A6A6E +:1017100012F47F4F05D00DF107010120FFF754FFB0 +:10172000F1E79B6AB3F5803FA9D3FFF723FFEAE710 +:101730000DF107020021E3E70DF107010020EDE7BD +:1017400023F4FF7323F00103ACE700BF00ED00E0DA +:10175000024A536943F010035361704700ED00E003 +:10176000EFF30880EFF3098101B57246FFF762FFDE +:1017700001BD00BF044800232021C2180133302BD3 +:1017800082F80013F9D1704700E100E0FFF70EFC8A +:10179000202080F3118808484FF40461401880F33A +:1017A0000988EFF314800221084380F31488BFF303 +:1017B0006F8FFFF7A1FD0000000A0020084B9B6817 +:1017C00083420BD1EFF3058343B1064B5A6842F0D5 +:1017D00080525A605A6A22F400425A6203F0ACB94D +:1017E0007C05002000ED00E0024B034A0348012184 +:1017F00000F070B800000420000000202066000007 +:10180000826E054B403A1A60044A4021C3E9011236 +:101810001846012100F068B8EC03002000000B1509 +:10182000F0B5204E00258D4239DA446874B353B1C7 +:1018300004F1FF3C14EA0C0F2FD11F2C2DD907689F +:101840001CEA070F29D1202C0768D0F808C05FFADE +:1018500082FE1ED9B4F1004F1DD8013CB4FA84F4C5 +:10186000C4F11F046400BEF1070F4CEA040C14D845 +:1018700027F01F04144344F01004C6F89820C6F85B +:101880009C404CF00104C6F8A040013201350C30F8 +:10189000C9E70824E7E73E24E5E76FF015021046A4 +:1018A000F0BD00BF00ED00E0044B0522C3F894201A +:1018B000BFF34F8FBFF36F8F704700BF00ED00E0A5 +:1018C000BFF35F8F024B0022C3F89420704700BF24 +:1018D00000ED00E010B5034C01232278FFF7A0FFD4 +:1018E000207010BDC205002008B5094A00231278F7 +:1018F000FFF796FF10F1160F02D0064A072800DD09 +:1019000008BDC2F89800C2F8A0300130F6E700BF69 +:10191000C205002000ED00E014490868082810B551 +:1019200021D8FFF7CDFF124C49680022904201F107 +:101930000C0105D10F4B1870FFF7B6FF002010BD4A +:10194000C4F8982051F80C3C23F01F03134343F0D4 +:101950001003C4F89C3051F8043C43F00103C4F870 +:10196000A0300132E2E74FF0FF30E8E72C660000DC +:1019700000ED00E0C2050020014B1860704700BF79 +:101980003400002010B54FF02003EFF3118083F3F3 +:101990001288BFF36F8F114A0123C2F840354FF010 +:1019A00080424FF08051C2F87835D1F83041082C90 +:1019B00008D1D1F83411052904D8094C615C09B16A +:1019C000C2F838364FF080430122C3F8802580F3F7 +:1019D0001188BFF36F8F002010BD00BF00E00140F1 +:1019E0007269000020B1034B800143F001031847E6 +:1019F000704700BFF0650000084B70B5C31A0D4674 +:101A000007499B10044659430648402203F0A6FDAF +:101A10002B4601462046BDE8704018470C040020C4 +:101A2000B76DDBB63063000073B50C4C0C4A402335 +:101A3000041B00930D460B460A49A4106143064659 +:101A4000094803F0B8FD011E05DA30462B4602B006 +:101A5000BDE87040184702B070BD00BF0C04002004 +:101A600023560000B76DDBB630630000002270B56E +:101A7000012104461046FFF723FC0F4801F096FBB6 +:101A80000E4B984215D104F088F826690C4930466F +:101A900003F0FEFB00280BDB0125356424690849AF +:101AA00004F11C0003F0F4FB002801DBE5640020D6 +:101AB00070BD6FF00400FBE7F91A00000000AD0BE9 +:101AC0004C66000070B501460C2309484B43C4180E +:101AD000D4E90E56403300221844A26303F02BFDD4 +:101AE0002DB132462B460348BDE87040184770BD03 +:101AF0000C0400203063000010B1012804D07047AE +:101B0000034B1B6C5B0701D1FFF7DCBF704700BFC5 +:101B10000C04002008B54FF02003EFF3118183F38C +:101B20001288BFF36F8F124A136843F002001060EF +:101B3000DA0708D481F31188BFF36F8F0120BDE865 +:101B4000084004F037B84FF08043D3F80C24D3F8A2 +:101B50000C34DB07EED5074803F0EDFC81F3118868 +:101B6000BFF36F8F0020BDE80840FFF7ABBF00BF99 +:101B70005C0400204C0400207FB500220123CDE945 +:101B8000022304ABCDE90433094ACDF800D06B46FB +:101B9000CDF804D003F03EFD002805DB4FF4804271 +:101BA0000023684602F0E2FC07B05DF804FB00BFCA +:101BB0004156000010B54FF02003EFF3118483F37A +:101BC0001288BFF36F8F074A136823F00201DB0707 +:101BD000116002D4012004F029F884F31188BFF3C6 +:101BE0006F8F10BD5C0400202DE9F0413849BFF330 +:101BF0005B8F0746012251E8003F41E800200028A2 +:101C0000F9D1BFF35B8F33B9324933484B60CB60B6 +:101C10008A6003F050FB7B1E012B2BD8012F07D1CC +:101C20004FF08043D3F81C3403F00303012B21D081 +:101C300004F09BF90546F8B9284B1B78E3B14FF047 +:101C400080430222C3F808230646DFF894804FF051 +:101C50008044D4F81824D4F81834D20316D503F0ED +:101C60000303012B01D0012F10D15DB386F311883E +:101C7000BFF36F8FBDE8F0814FF02003EFF31186C3 +:101C800083F31288BFF36F8F0125DEE7ADB13046D5 +:101C9000FFF7DAFAD4F81835002BDAD1D4F804219A +:101CA000002AD6D0C4F80431D4F804310123C4F892 +:101CB0001835C8F88031A360CBE70021212002F05D +:101CC0001BFFE7E74FF080430222C3F80423D1E76C +:101CD00008040020F803002028040020DD0900206B +:101CE00000E100E008B5074804F009F938B10648FA +:101CF000FFF742FE0448FEF785FC002008BD6FF0A8 +:101D00001200FBE7786300000D1D00000A2838B5BB +:101D1000074D044604D1AB680D215B6828469847FF +:101D2000AB6803485B68E1B29847204638BD00BF06 +:101D30007863000030B54068057B01F01F04B2F500 +:101D4000001F85B044EA451405D1204601F0ACFCE3 +:101D5000002005B030BD0025B2F5800FCDE9025559 +:101D600014D1B3F1007F0CBF042305238DF8083094 +:101D70000023194602AA204601F0DEFA234B9842BE +:101D80003DD10121204601F049FCE1E7B3F1C06FEC +:101D900027D0B3F1007F14BF012302238DF8083050 +:101DA000836823FA01F111F00101E1D1B2F1A07FC2 +:101DB000DED104F01F03620903F5E07313D0012A9A +:101DC00020D1134A52F82330DB07D1D40DF1070597 +:101DD0002946204601F0D2FB0E4B984206D00395CF +:101DE000C6E70323DAE74FF0A042EBE7284601F00D +:101DF0000FFC064B9842F2D06FF00B00A9E76FF092 +:101E00001500A6E751F82330FFDE00BF0000AD0B40 +:101E1000000300500400AD0B10B501F0E9FB0446CF +:101E200068B901F0BDFB084B98420AD1074821462A +:101E300001F09EFB224605210620FFF741FA002013 +:101E400010BD6FF00400FBE70000AD0B511E000059 +:101E5000420970B5034602D0012A17D070BD0D4E5D +:101E6000326951680029F9D003F01F0301250C687D +:101E70009D400029F2D08A682A4002D04B68304643 +:101E800098472CB1236821461C46F2E7024EE7E74B +:101E90002346F8E760630000486300002DE9FF4136 +:101EA00047683B7B01F01F0545EA43150E4628466F +:101EB0000DF10301144601F061FB14F4403F80462C +:101EC0000BD1284601F012FC3D4B984503D19DF8FB +:101ED000030001F097FB00200CE00023194602AA42 +:101EE0002846CDE9023301F027FA354B984204D059 +:101EF0006FF0150004B0BDE8F081804503D19DF876 +:101F0000030001F07FFBA3034BD540F206332340CF +:101F1000B3F5837F19D00CD8062B17D004D8ABB1FA +:101F2000022BE5D1042311E0B3F5807FE0D101233A +:101F30000CE040F20222934227D0B3F5407F26D036 +:101F4000B3F5007FD4D1022300E007238DF80430DD +:101F500084F48033C3F30043E0068DF8053054BFAA +:101F6000C4F34013032321038DF8063011D57A689A +:101F70000123B340C2F80835002201A9284601F028 +:101F800087FA0F4B9842A6D0B2E70523DEE703237A +:101F9000DCE7620341BF01237A68B340C2F80C3525 +:101FA000EAE7E3064FF0000354BFC4F340140324F0 +:101FB0001A4601A928468DF8044001F0BDF9E0E772 +:101FC0000000AD0B036803F01F025B09026004D040 +:101FD000012B034818BF002070474FF0A040704706 +:101FE000000300502DE9F04FDFF8709185B01546E1 +:101FF000824600EB81014FF00108514503D10020DA +:1020000005B0BDE8F08FDAF8003003F07F04C3F3C9 +:1020100043277F2C4FEA134308BF4FF0FF34222B96 +:1020200000F29980DFE803F012431F222736223A9C +:10203000223D434670979797979797979797737C0A +:102040007F8297979785888B8E919400C5F80C4571 +:1020500003A80394FFF7B6FF039B08FA03F3C0F845 +:102060000835012613E0C5F80845F1E7C5F8104525 +:102070000026B34625E0C5F80845002603A80394CA +:10208000FFF7A0FF039B08FA03F3C0F80C354FF0ED +:10209000010B16E0C5F80C450126EFE7C5F8084529 +:1020A000E6E7C5F80C4501264FF0000B09E0C5F83E +:1020B0001445DDE7C5F80845002FD9D10026B34601 +:1020C00006275AF8043B019303F40052002A03A8A0 +:1020D0001CBF01264FF0000B0394FFF773FF039A18 +:1020E000019B00EB8200C3F3C114D0F800273B0230 +:1020F00043EA840343EA0B0302EA0902134343EA77 +:102100004603C0F8003778E7C5F80C45D4E7C5F8B2 +:102110006045DAF80030C3F38033002BBCD097E77A +:10212000C5F86445F5E7C5F86845F2E7C5F86C45BC +:10213000EFE7C5F82445B6E7C5F8284588E7C5F8B0 +:102140003045B0E7C5F83445ADE7C5F83845AAE7EE +:10215000C5F83C45A7E76FF0850051E7F0F8FCFFB4 +:10216000F0B54B79012B26D0032B21D110258B798B +:10217000032B1DD1CE790EB1012E19D10A7912B1DE +:10218000022A15D10E220B684468B3F5164F276852 +:1021900067D02DD8B3F5165F66D016D8B3F5966F15 +:1021A00064D00AD8B3F5967F63D0B3F5167F63D0B9 +:1021B0006FF0850054E00025D9E7B3F5166F5ED0C7 +:1021C000B3F5965FF4D1384B3CE0B3F5E14F59D00D +:1021D00007D8B3F5615F57D0B3F5964FE8D1334BCD +:1021E00030E047F61224A342E2D14FF4000329E085 +:1021F000B3F5613F4AD013D8B3F5963F49D009D81B +:102200004DF6C024A34246D0B3F5614FD0D14FF470 +:102210006B0317E0B3F5E13FCAD14FF0EB7311E068 +:10222000B3F5612F3AD008D8214CA34239D0B3F589 +:10223000E12FBDD14FF0E86304E01E4CA342B7D1BB +:102240004FF080530469C7F82435436835431B6851 +:102250002A43C3F86C2503C9231D83E8030000202B +:10226000F0BD4FF41D03EDE7134BEBE74FF49E2356 +:10227000E8E74FF4A033E5E74FF41C33E2E74FF40F +:102280001D23DFE70D4BDDE70D4BDBE74FF06C73F4 +:10229000D8E70C4BD6E74FF46503D3E74FF07063F4 +:1022A000D0E74FF08063CDE700B0130000A04E00F0 +:1022B00090D0030040420F000050270000C075007E +:1022C00000F03A0000903A012DE9F74380460022E1 +:1022D00001210220FEF7F4FF0220FEF7C1FFD8F82B +:1022E0000470D8F810603C680021C4F80015C6F8E6 +:1022F0000080D7F80C9001AA484603F0F9F9051EB2 +:102300004CDB019BD9F8002019791868FFF76AFEA9 +:10231000051E43DB311D4046FFF722FF054600281E +:102320003CD17B68990712D506F1180001F0E6FA56 +:102330001E4B984236D1307E04F10C0204F59071A8 +:1023400003F021FC337E0120984000F0C7FE0823F3 +:10235000C4F800353B7A53B9C4F81031D4F81031C1 +:102360007369C4F834350123C4F8383523607B68B9 +:102370009A075CBF4FF48073C4F804337B68DB06B4 +:1023800044BF4FF48003C4F804333369C4F84435C0 +:102390000023C4F848350123A360E360284603B056 +:1023A000BDE8F0836FF00405F8E700BF0000AD0B57 +:1023B000F8B5044607690D4603F0D7FDB0B92E4BBA +:1023C0001B789BB16426606803F0C8F900BB01204C +:1023D00003F0D7FB013EF6D10021212002F08CFB57 +:1023E000F0E786F31188BFF36F8FF5E74FF0200316 +:1023F000EFF3118683F31288BFF36F8F6068314665 +:1024000003F0ACF990B986F31188BFF36F8FEDE755 +:102410004FF02003EFF3118683F31288BFF36F8F21 +:102420006068314603F09AF90028DAD03B691D70E4 +:10243000626838691368C3F844050120C3F8480589 +:102440000020C3F82001D3F82051C3F85801526886 +:10245000D3F85801D20608D5626812680820C2F87D +:1024600000054FF48002C3F8042301229A6081F32F +:102470001188BFF36F8FF8BDDD090020F0B5046946 +:102480004768666EE36E85B005463EB96BBB19467C +:10249000284605B0BDE8F04003F055BA216E03BBF5 +:1024A00031BB3A8F236E0091B24228BF3246A267F9 +:1024B0001BB1636E002B18BF13460193A36E0293EA +:1024C0001BB1E36E002B18BF134600226946384645 +:1024D000039301F04DFC0F4B984219D06FF00401AB +:1024E000D6E79E4228BF1E46DAE7216E1E46D8E791 +:1024F00001F06043B3F1005FD3D0082E28BF082657 +:10250000D4F88000324602F0DBFFD4F88010C8E730 +:1025100005B0F0BD0000AD0B2DE9F04F8FB098462F +:10252000436802938B8804690E46990407469146D6 +:1025300000F1BD804FF0FF334FF0FF3204F1100087 +:1025400002F014F89DF8603084F84C30199B6364F5 +:102550001A9B6660A364D7F804B0D7F810A0DBF824 +:10256000083003939AF87D3000931BB1DAF80030FD +:102570009E424DD0B6F804E01EF4006F40F0B080EB +:102580001EF0090F40F0A980CEF34513082B40F050 +:10259000A48033680193019A884B9A4240F29D804F +:1025A0000BF10C0CBCE80F0004AD0FC5BCE80F002C +:1025B0000FC59CE80300039B019A934294BF0993C3 +:1025C00009921EF0020F85E803000EF0040377D095 +:1025D000002B14BF032302238DF82830009BCEF379 +:1025E000001E8DF829E02BB1584601F06BFB00234B +:1025F0008AF87D305346724A04A9584601F030FBF0 +:10260000704B984260D101238AF87D30CAF800608F +:10261000012384F87C30B9F1000F64D1C4F85090E4 +:102620000023636504F1640204F1540104F15000D5 +:1026300003F0E2F82066B8F1000F5CD1C4F85880CE +:102640000023E36504F16C0204F15C0104F158001D +:1026500003F0D2F8A066206800232364236748B102 +:1026600083683BB10121083003F0D9F82368186969 +:1026700003F094FD3846FFF701FF94F84C302068D2 +:10268000002B40D0858815F0010505D0256F15F188 +:10269000740F63D0002D19DB23689B889B0402D440 +:1026A00094F84C3093B128460FB0BDE8F08FA36981 +:1026B000002B7FF43FAF63689E427FF43BAF4AE755 +:1026C000003B18BF012387E76FF004050023636018 +:1026D00004F1100001F024FFE5E76FF01505F5E7C0 +:1026E0006FF08505F2E7D9F800302365002B97D00D +:1026F000D9F8043095E7D8F80030A365002B9FD0B7 +:10270000D8F804309DE7828812F0010247D1656D48 +:102710001346AB4235D10023E66D1946B14237D19D +:10272000934238BF13464FF4FA5202FB03F54FF4BD +:1027300000460368B5FBF3F540F2E730C8350021E9 +:102740004FF47A720023E5FB0601FDF7D9FC02463F +:102750000B4604F1280001F009FF20B30025029880 +:10276000A56701F0AFFA84F87D506FF07301384629 +:1027700003F0E9F804F1280001F020FF6FF0730581 +:10278000A4E7216D01EBC301013349680A44C0E7A6 +:10279000A56D05EBC10501316D682B44BEE74FF017 +:1027A000FF321346D5E72368256C9B88DA077FF54F +:1027B0006EAF002D7FF46BAF68E700BF47E8010004 +:1027C000B15900000000AD0B73B544680569E66AB5 +:1027D00001AA0021304602F08BFF002815DB019B87 +:1027E000326819791868FFF7FDFB00280DDB2B46CE +:1027F000084A04F10801204601F0E6FB064B984226 +:1028000005D1284603F040F9002002B070BD6FF0FA +:102810000F00FAE7255B00000000AD0B2DE9F34146 +:102820001F468B8805699B0406468846144623D4B8 +:102830004FF0FF334FF0FF3205F1100001F096FE2C +:102840009DF8203085F84C30099B6B640A9BC5F8D5 +:102850000480AB64326971681368984535D0B8F864 +:10286000043018050FD56FF0850400236B6005F167 +:10287000100001F055FE85E0AB69002BD8D16B68E4 +:102880009942D5D1E6E7D80740F1D280180700F188 +:10289000CF80C3F34513082B40F0CA80D8F8083026 +:1028A000002B40F0C580C2F80080B8F80420096809 +:1028B000130912F0020F03F0010302F0040216D014 +:1028C000D2B143F00603C1F85435C4B997B37B685D +:1028D000012BC8D8224670683B68018DD6F810805D +:1028E0009142D3E900735DD38B425BD827E0002A85 +:1028F000E9D043F00203E6E743F00403E3E763684B +:10290000012BB0D86FB17B68012BACD82368D3E919 +:102910000042002ADFD004F06043B3F1005FDAD058 +:10292000A1E72368D3E9004282BBD6F81080706823 +:102930003B4604E0D6F8108070683B463A46009368 +:1029400021463B4601F07AFB3C4B984205D06FF0A4 +:1029500004023146404603F0C3F8286895F84C302D +:10296000848804F0010403B31CB12C6F002CFFF623 +:102970007CAF2B689B889B0404D495F84C30002BCB +:102980003FF473AF204602B0BDE8F08104F060432D +:10299000B3F1005F7FF467AF7068D6F81080038DE5 +:1029A0009A42C5D96FF01502D3E7002C3CD1696D6E +:1029B00023468B422AD10023EE6D1A46B2422CD117 +:1029C000A34238BF23464FF4FA5202FB03F44FF4FC +:1029D00000460368B4FBF3F440F2E730C83400214A +:1029E0004FF47A720023E4FB0601FDF789FB0246EF +:1029F0000B4605F1280001F0B9FDE0B92B682C6CFD +:102A00009B88DA07B2D5002CB0D1AEE72A6D02EB75 +:102A1000C302013352681444CBE7A96D01EBC20134 +:102A2000013249680B44C9E74FF0FF321346E0E733 +:102A30006FF0150419E76FF0730416E70000AD0B93 +:102A400070B5012383400E4ABFF35B8FDC4352E82D +:102A5000001F01EA040542E80056002EF7D1BFF33B +:102A60005B8F4FF4803282400648C0F80823BFF3E2 +:102A70005F8FBFF36F8F0B4214BF0120002070BD2A +:102A80007C0400200010014070B40E49D1E90034EC +:102A9000D01AC31844F1000422F07F46C1E9003483 +:102AA000A6F50013B3F5400F09D2074B1B681A0AAD +:102AB0001B069C19054B42F10005C3E9004570BC9B +:102AC00002F082B9F001002080040020F80100200B +:102AD00011B3BFF35B8F0123104A834052E800CF4C +:102AE0004CEA030C42E800C10029F7D1BFF35B8F29 +:102AF0000B4A4FF480338340C2F80433094BBFF3D1 +:102B00005B8F1B68BFF35B8FC340DB0742BF064B85 +:102B10004FF40032C3F80021704700BF7C0400204E +:102B2000001001407804002000E100E00D4B18681F +:102B3000010A0006BFF35F8F0B4BD3F8043518185A +:102B400041F10001B3F5801F0AD2084BD3E90023FD +:102B5000904271EB030303D210F1807041F1000148 +:102B6000704700BF8004002000100140F8010020E1 +:102B70002DE9F74F16461F460446FFF761FF009008 +:102B8000FFF7D4FFB04271EB070351D23A4B301A32 +:102B900067EB0101984271F100016AD2374B03EBF8 +:102BA0000413D3E902239F4208BF96424ED0344912 +:102BB0004FF4803904F1500509FA04F9AD00C1F869 +:102BC00048932046ADB202F0CFFF26F07F4B05F1CF +:102BD000804504F5A8732B4A019305F58835DC463A +:102BE0004FF0030A019B2CF07F4041F82300C1F80D +:102BF0004493D1F804856FF00200A0EB0800604414 +:102C000020F07F40904221D9286860B1D1F8048536 +:102C1000A8EB0B0020F07F40B0F5000F16D920463E +:102C200002F0A2FF174A0AEB080C0AF1010AD9E7E1 +:102C30000123154ABFF35B8FA34052E8000F1843EE +:102C400042E800010029F8D1BFF35B8F0B490C98D3 +:102C5000230101EB0412C2E90267C8500D9B5360C7 +:102C6000002520460099FFF733FF284603B0BDE852 +:102C7000F08F6FF01505F4E701008000E0010020FF +:102C800000100140FDFF7F007804002073B51B4C4D +:102C90001B4BC4F80833C4F848331A4B00254FF0D7 +:102CA000FF304FF0FF31C4F80855C3E902014FF47B +:102CB0008033C4F80433144B02264FF40032012150 +:102CC000C4F804631120C3F880212A46FEF7F8FAFD +:102CD0001120FEF7C5FA0D4A0123A360236013609B +:102CE0000B4B0C4A0093019500232846FFF740FF49 +:102CF0003046FEF779FF284602B070BD0010014053 +:102D000003000F00E001002000E100E07C0400204F +:102D1000892A0000FFFF7F002DE9F7432F4CD4F8EC +:102D2000043399070BD5D4F8043143B12C4A00235E +:102D3000C4F80431D4F80431136801331360D4F8B3 +:102D40000433DA032AD5BFF35B8F264B53E8002FF9 +:102D500022F0010143E800100028F7D1BFF35B8F98 +:102D6000D30702D4D4F84031C3B10025C4F8405190 +:102D7000D4F84031FFF7DAFE4FF02003EFF3118271 +:102D800083F31288BFF36F8F174BD3E90267B0420A +:102D9000B94106D282F31188BFF36F8F03B0BDE84B +:102DA000F0834FF0FF384FF0FF39C3E90289D3E9D0 +:102DB00000101D604FF48033C4F84833C4F840510C +:102DC000D4F8403182F31188BFF36F8F0029E5D02A +:102DD000009032463B4628468847DFE70010014016 +:102DE0008004002078040020E0010020431C13B57B +:102DF00022D0012822DD124A124B9042D4BF044651 +:102E00001C46FFF793FE104B0E49D3E90023801AAE +:102E1000B0F5000F28BF002404448C4228BF0C46A4 +:102E2000A2180A4900914FF00000019043F10003FD +:102E3000FFF79EFE02B010BD024CE2E70124E0E77E +:102E4000FEFF7F00FFFF7F00F0010020892A0000C5 +:102E500008B5FFF76BFE024B1B68C01A08BD00BF28 +:102E6000F00100204FF08053D3F83021082A06D11A +:102E7000D3F83431052B02D8024AD05C70470020C9 +:102E8000704700BF0F6A0000024AD2F80034002BDE +:102E9000FBD0704700E0014010B54FF08053D3F8ED +:102EA0003021082A4ED14FF080420021C2F80C1187 +:102EB000C2F81011C2F8381502F54042D3F80414D4 +:102EC000C2F82015D3F80814C2F82415D3F80C144E +:102ED000C2F82815D3F81014C2F82C15D3F814141E +:102EE000C2F83015D3F81814C2F83415D3F81C14EE +:102EF000C2F84015D3F82014C2F84415D3F82414AE +:102F0000C2F84815D3F82814C2F84C15D3F82C147D +:102F1000C2F85015D3F83014C2F85415D3F834144D +:102F2000C2F86015D3F83814C2F86415D3F83C140D +:102F3000C2F86815D3F84014C2F86C15D3F84434BD +:102F4000C2F87035FFF78EFF18B13A4B3A4AC3F812 +:102F50008C26FFF787FF18B1384BFB22C3F81825E2 +:102F6000FFF780FF70B14FF080414FF08053D1F8F0 +:102F7000E42ED3F8583222F00F0203F00F0313436C +:102F8000C1F8E43EFFF76EFF20B12D4B4FF4007205 +:102F9000C3F840264FF08053D3F83031082B1AD1B4 +:102FA0004FF08043D3F80024D20744BF6FF00102F2 +:102FB000C3F800244FF08053D3F83431052B02D8E6 +:102FC000204AD35C3BB14FF01023D3F808224FF0D6 +:102FD0008043C3F858254FF01023D3F80022002A6D +:102FE00003DBD3F80432002B22DA174901234FF018 +:102FF0001020C1F804351224FFF746FFC0F8004244 +:10300000FFF742FFC0F80442FFF73EFF0023C1F87C +:103010000435FFF739FFBFF34F8F0C490C4BCA68DB +:1030200002F4E0621343CB60BFF34F8F00BFFDE7B4 +:1030300010BD00BF005000404881030000F0004078 +:1030400000900240096A000000E0014000ED00E04D +:103050000400FA0530B50468CCB1BFF35B8FB4FA55 +:1030600084F3C3F11F03DBB201229A4024EA020277 +:1030700050E8005FA54204D140E8002CBCF1000FED +:10308000F6D1BFF35B8FE6D102480B7030BD02482A +:10309000FCE700BF0000AD0B0200AD0B10B50368EC +:1030A000CB40DB0714D401238B400268BFF35B8F56 +:1030B00043EA020150E8004F944204D140E8001C6A +:1030C000BCF1000FF6D1BFF35B8FEED1014810BD0C +:1030D0000148FCE70000AD0B0400AD0B014BC3F849 +:1030E0000405704700F00140F7B5044618B1012807 +:1030F00023D003B0F0BD4FF080430222C3F8082371 +:10310000C3F80401D3F804210122DA600646012342 +:103110008DF8073042F210754FF08047D4B1012C82 +:10312000E7D1D7F80C3403F48033AEBB83B301206E +:1031300002F027FD013DF4D12AE04FF08043002248 +:10314000C3F80803C3F80021D3F8002158600DF13B +:103150000706DCE7D7F8183403F480333EB9002BB8 +:10316000C7D0012002F00DFD013DF3D1C1E7D7F832 +:10317000182402F003023260002BBAD09DF8070039 +:10318000012803D102F0FDFC013DC7D1012CB0D1D3 +:10319000054B00225A71ACE7D7F80C2402F001026B +:1031A0003270002BEAD1F3E784040020044B1A7933 +:1031B00022B9012218609A8002487047024870477D +:1031C000840400200000AD0B0C00AD0B10B54FF0D7 +:1031D0008043D3F800216AB10022C3F80021D3F85C +:1031E00000210122C3F80823114B587910B95A71F4 +:1031F0001B6898474FF08043D3F8042172B1002236 +:10320000C3F80421D3F80421D3F81824D3F81824E0 +:10321000920704D10122C3F818259A6010BD02223A +:10322000C3F80823024BBDE810401B680120184773 +:1032300084040020036803F01F025B09026004D0CD +:10324000012B034818BF002070474FF0A040704783 +:103250000003005070B500F108030C4C34F8133033 +:10326000DA0505460E4607D5C3F3432304EBC30234 +:1032700054F8333052689847A3682BB1E26831465E +:103280002846BDE87040184770BD00BF4C010020C3 +:1032900010B4124A083032F81030D9051BD5C3F3E8 +:1032A000432123F4F85322F8103002F10E040020D9 +:1032B00034F8023F13F4807F03D0C3F343239942D1 +:1032C00009D001303028F3D1002342F831300448CE +:1032D00010BCFFF7E3BE10BC704700BF4C010020DC +:1032E000C0010020F0B50146104A114C0020012514 +:1032F000064602F14043A3F5C2439B0805FA03F3D7 +:10330000194204D0176817B11660176818430432C1 +:10331000A242EED1074BD3F87C2132B10022C3F890 +:103320007C21D3F87C3140F00040F0BD00610040CA +:1033300020610040006000402DE9FF411D46044629 +:1033400016460B46E9B14D4F00F1080837F8182032 +:1033500002F02202222A20D00022CDE900228DF89C +:103360000E208DF80F200DF10E010DF10F0202F06D +:103370005FFC37F8183023F0020343F0010327F80D +:10338000183046B33D4B96F800C0726804F1080748 +:1033900033F81710880702D5AAB139481DE021F08B +:1033A0002001C904C90C23F8171062B1BCF1030F46 +:1033B000F3D872681678BCF1000F11D1314A06F5C6 +:1033C000A27642F826C033F8172022F01C0242EA07 +:1033D0008C0223F8172045BB2B4804B0BDE8F081D0 +:1033E000B20002F1804202F5C04241EA4631D2F811 +:1033F000100520F00300C2F81005D2F8100520F4E3 +:103400004F3020F44070C2F810052002D2F810E5C9 +:1034100000F47C5040EA0C4040EA0E0041F02001EC +:1034200023F81710C2F81005CDE7D5E9006720464C +:10343000FFF72EFF002ECFD0104DD5E90023964286 +:1034400001D19F4218D011480DF10F01FFF702FE84 +:103450000D4B9842C1D19DF80F2045F8326005EB25 +:10346000C20308345F6035F8143043EA422343F462 +:10347000807325F81430AFE70022EEE74C010020FE +:103480000400AD0B006000400000AD0BC001002047 +:10349000F0B5044685B0154609B300F10807314E72 +:1034A00036F81730980701D49A0658D413F01C0F39 +:1034B00002D04B78012B52D001238DF80F3000231E +:1034C000CDE900134A1C8B1C20460DF10F0102F0C0 +:1034D000AFFB36F8173043F0030326F8173015B961 +:1034E000214805B0F0BD1F4E04F1080736F817005B +:1034F000830734D595F800C06146890020F020008C +:1035000001F18041C00401F5C041C00C26F817004C +:103510000023C1F810356A78002AE1D0D1F81035BF +:10352000AD7823F4991323F4F853C1F81035D1F88A +:1035300010E5230203F47C53120443EA0E0302F461 +:1035400040322D05134305F4801540EA4C302B43DF +:1035500040F0200026F81700C1F81035C0E70348F6 +:10356000BFE700BF4C0100200000AD0B0400AD0B15 +:10357000014BC3E9020170474C0100200830054BA4 +:1035800033F810309A0643BF5B0B03480B700348B7 +:10359000704700BF4C0100200000AD0B0400AD0BD4 +:1035A00070B50F4C94F87860BEB90E4D602231466C +:1035B00004F1100001F08FFFC5F87C610620D5F8FA +:1035C0007C31FDF74DFE4FF00043C5F8043306484B +:1035D000012384F87830636770BD0448FCE700BFBE +:1035E0004C010020006000400000AD0B0500AD0B59 +:1035F000034B93F87800003818BF0120704700BFD4 +:103600004C01002001460148FFF748BDBC010020E5 +:1036100001460148FFF71EBDBC01002037B5204B15 +:1036200000F10802044633F812309A061DD513F053 +:1036300002051AD15B0B9A0002F1804000F5C240EE +:1036400002F1804202F5C04205600068D2F8100520 +:1036500040F00100C2F8100529B1012202FA03F37B +:10366000104AC2F8043303B030BDC3F38203042B05 +:1036700012D0052B12D001A80194FFF7DBFD019BAE +:10368000D0F81015D94001F001010231204603B0F5 +:10369000BDE8304002F015BB0321F7E70221F5E752 +:1036A0004C010020006000400E4B00F1080233F88E +:1036B0001230990613D59A0711D45B0B01229A4058 +:1036C0009B00094903F1804303F5C043C1F8082377 +:1036D000D3F8102522F00302C3F81025704700210B +:1036E00002F0EFBA4C0100200060004073B5174DA6 +:1036F00000F10806044635F81630D90724D5FFF73F +:10370000D3FF35F816309A0606D55B0B104A03F541 +:10371000A273002142F823102046FFF7B9FD0023D1 +:1037200001A825F816300194FFF784FD019B00EBFA +:103730008300084BD0F80027134043F00203C0F881 +:103740000037054802B070BD0448FBE74C0100207B +:1037500000600040F0F8FCFF0000AD0B0400AD0B72 +:103760002DE9F04F624BD3F80403C0B287B040F0AC +:103770000040FFF7B7FD051E80F29C804FF0A0438C +:10378000DFF87081D3F820250492C3F82025D8F8FB +:1037900020350593C8F820354FF000090DF1100AC7 +:1037A0004FEA491300934FF0010B49E0009B524A46 +:1037B00094FAA4F4B4FA84F41C44E00804F1080375 +:1037C000039432F813701AF8003004F007020BFA71 +:1037D00002F223EA02030AF8003003A8FFF72AFDE9 +:1037E000039B03F5E073B90850F82330C7F3820652 +:1037F0004A073746C3F301432CD520463946DEB28B +:10380000FFF728FD03A80394FFF714FD039B03F5BE +:10381000E07350F82330C3F301439E4207D10021E7 +:10382000204602F04EFA3146204602F04AFA03A83A +:103830000394FFF7FFFC039B0BFA03F3C0F820355A +:103840005AF82940002CB1D1B9F1000F1DD14FF029 +:103850000109A5E7022B0CD10321204602F031FA21 +:1038600006F00503012BE2D139462046FFF7F2FCB2 +:10387000DDE702212046019302F023FA032EF3D064 +:10388000019B032BD3D1022EEDE74FF00040FFF751 +:1038900029FD4FF0A042D2F820350493C2F820351C +:1038A000D8F8202505921343C8F820257FF474AF7B +:1038B00025F00045012415B907B0BDE8F08F95FA51 +:1038C000A5F3B3FA83F304FA03F29B0003F18043F8 +:1038D00003F5C04325EA0205D3F81005D3F8101507 +:1038E000C0F30520C1F30141FFF7B4FCE3E700BFDB +:1038F00000600040000300504C01002001460148D8 +:10390000FFF7A8BBC8010020036803F01F025B0992 +:10391000026004D0012B034818BF002070474FF00D +:10392000A0407047000300500F4B984219D00DD8AB +:103930000E4B984215D007D80D4B984211D00D4B25 +:10394000C31A5842584170470B4BF9E70B4B98424A +:1039500007D004D80A4B984203D00A4BF0E70A4B31 +:10396000EEE70120704700BF80841E0020A1070001 +:1039700048E8010090D0030040420F000024F4000A +:1039800000093D0000127A000048E80173B51646B0 +:10399000421C1C460546069B18D0012902D1BBB12A +:1039A00002F0F1F901A80195FFF7AEFF019B00EBD2 +:1039B00083002402D0F80027074B44EA86040C4316 +:1039C00013401C4344EA4101C0F8001702B070BD27 +:1039D00002F0E6F9E6E700BFF0F8FCFF2DE9F04F52 +:1039E0008A4B4D6990F804A09D4287B006460C466C +:1039F00000F0E58000F2D580854B9D4200F0E2802A +:103A000000F2C780834B9D4200F0DF80824B9D42D5 +:103A10000CBF4FF080654FF08045804F94F8230035 +:103A2000242202FB0A73997F60F3000199773379AE +:103A3000217C02FB0373D97794F82380B8F1000F3F +:103A400034D16269764B9A420CBF4FF003094FF0B4 +:103A50000009237E012B94BF0023012300932068DB +:103A60004B4642460121FFF791FFCDF80080606888 +:103A70004B4642460121FFF789FFCDF80080A27E28 +:103A8000A0684B464146FFF781FF237C83F001038A +:103A90000093E0684B4642460121FFF777FF012182 +:103AA0000091E0694B464246FFF770FF94F82130E1 +:103AB0002422002B00F0928002FB0A724FF0FF31AB +:103AC000116294F82110627E94F8129094F818C054 +:103AD000E0690492002900F08A80E16894F810E01F +:103AE00094F822B094F820A0CDF814E0002B40F018 +:103AF000818010F1010818BF4FF0010894F824E00C +:103B00003368BEF1000F0CD1226802926268039202 +:103B1000029AA468C3F80825039AC3F80C25C3F8D1 +:103B20001045049AC3F8C095003A18BF0122BCF1B1 +:103B3000020FC3F8245560D0BCF1030F60D0BCF174 +:103B4000010F01D142F00202C3F85425B8F1000F71 +:103B500011D0BEF1000F0CD1441C18BFC3F86C0586 +:103B60004A1C1FBF059AC3F81415C3F86825C3F88B +:103B700064B5C3F860A5337924225343FB58002B66 +:103B800041D0306840F3073007B0BDE8F04FFDF793 +:103B900067BB244B9D420CBF4FF080554FF08045D2 +:103BA0003BE7214B9D4213D01D4B9D4213D01F4B31 +:103BB0009D420CBF4FF000454FF080452DE74FF080 +:103BC00000552AE74FF0006527E74FF0007524E71E +:103BD0004FF0206521E74FF0A0551EE702FB0A7A5F +:103BE000E168CAF82010227C8AF81F2069E74FF0AC +:103BF000FF3173E74FF0010880E742F00402A3E7CA +:103C000042F00602A0E707B0BDE8F08F80841E00F6 +:103C100020A1070048E8010090D003009004002094 +:103C20000048E80140420F000024F40000127A002E +:103C3000431C07B50ED0019001A8FFF765FE019B5C +:103C400000EB8300054BD0F80027134043F002033C +:103C5000C0F8003703B05DF804FB00BFF0F8FCFFCC +:103C6000F8B50546134C2F7924267E4304EB060C49 +:103C70009CF81CE0BEF1000F17D1A251CCF8043023 +:103C800051B14869FFF750FE88B12846FFF7A6FEFC +:103C90002B680722C3F80025242303FB07440023D5 +:103CA0006377054801232377F8BD0448FCE70448FF +:103CB000FAE700BF900400200000AD0B0500AD0B3B +:103CC0000400AD0B2DE9F041044606790068254D4E +:103CD00040F30730FDF7D2FA24237343EA18EB5878 +:103CE00063B123682049C3F80813537F33B106EB4F +:103CF000C601206805EB810102F05FF8236800220D +:103D0000C3F800252421236801FB0651D3F80805D8 +:103D1000D3F80C75D3F810858B7FDB0714D4FFF72D +:103D200087FF4046FFF784FF3846FFF781FF086AA8 +:103D3000FFF77EFF2368D3F86C05D3F81415FFF75F +:103D400077FF0846FFF774FF2368084A934204BFD1 +:103D500001225A60242303FB065500232B77BDE87C +:103D6000F08100BF900400205201080000F00240E2 +:103D70002DE9F04390F80480624E242303FB08F3FE +:103D80001746F2180D46517F85B08146002940F054 +:103D9000B780F35823B117F0140F04BF01235377F2 +:103DA00095E80F00242404FB086404F10C0C8CE853 +:103DB0000F00206A411C03D0E37FD3B101F0E3FF81 +:103DC0002968D9F8004021B101F06043B3F1005FE8 +:103DD00006D1AB6883B103F06043B3F1005F0BD051 +:103DE000242303FB0863002247485A7705B0BDE847 +:103DF000F08301F0D5FFE3E7444B9C4224D14FF020 +:103E000080436A68D3F8000E414B1860E2B1414824 +:103E100021F4FF5323F01F03834260D85018DFF8CA +:103E2000F8C0C3F34F3101228A40002103F500534B +:103E3000984241EA02014FEA420201D96345F5D3B3 +:103E40004FF08043C3F8001E17F0010318BF012391 +:103E5000C4F8503517F0020318BF0123C4F84035E9 +:103E600095E80F00EC468CE80F00039BC4F844056E +:103E7000C4F84815C4F83425C4F838350023C4F80C +:103E800018313A07D4F818310FD4242303FB08F370 +:103E9000F2580123236142B9D4F81831002BFBD02A +:103EA00062464021204601F030FF242303FB08F343 +:103EB000F358D3B9154B9C4201BF154B1A684FF00C +:103EC0008043C3F8002E242303FB0866306A431C9A +:103ED00003D0F37F33B101F063FF104886E74FF45E +:103EE0008071ADE701F04FFFF7E717F0040F4FF0D7 +:103EF000400302D0C4F80833EFE7C4F80433ECE71A +:103F0000074873E7900400200A00AD0B00F0024060 +:103F10008C040020FFFF0020002001200000AD0BDA +:103F20000B00AD0B114A124810B5402101F0EDFE17 +:103F3000420619D50F4B10491A684FF08043C3F859 +:103F4000002E086A431C03D0CB7F53B101F028FF39 +:103F500000234B770B72BDE81040D1E900310748D0 +:103F6000184701F010FFF3E710BD00BF9C040020CC +:103F700000F002408C0400209004002098040020EF +:103F800030B500F01F04400911D0012812D10C48AF +:103F900000EB84001B02D0F800570A4C43EA82026F +:103FA0002C4042EA41012143C0F8001730BD4FF0D8 +:103FB000A040EDE704F5E074002353F82430FFDE61 +:103FC00000030050F0F8FCFF2DE9F041174E047992 +:103FD0004FEA441806EB441494F814C0BCF1000FE7 +:103FE00022D10568A260A361B1B946440023C5F897 +:103FF0003435C5F83835C5F84435C5F848357375D6 +:1040000040F20243C5F80433012333750848022304 +:10401000C5F80035BDE8F081CB7D237701F001FFC5 +:104020000028E2D10348F5E70348F3E7B404002091 +:104030000000AD0B0400AD0B0500AD0BF8B5047925 +:10404000069E2CBB46EA0204B4F5803F20D221B183 +:1040500001F06044B4F1005F1CD123B103F060446F +:10406000B4F1005F16D10E4C677D012FFDB213D065 +:1040700002D9023D012D11D8C4E903132260666004 +:10408000006807490123637501F0ABFE0548F8BDE0 +:104090000548FCE70548FAE70548F8E70548F6E76C +:1040A000B40400200000AD0B0600AD0B0A00AD0B00 +:1040B0000500AD0B0100AD0B10B54FF04020D0F85E +:1040C0002831D3B100231749C0F82831D0F828315E +:1040D0004B7D012BDAB210D10B68CC68C0F8444597 +:1040E000C0F848354B680C69C0F83445C0F838351D +:1040F000826202234B7501F074FE4FF04020D0F82D +:10410000043173B100230749C0F80431D0F80431F9 +:104110004B7D022B05D103234B75BDE8104001F008 +:1041200060BE10BDB404002010B5144C144A1549EB +:10413000032323616361144BA261E3614FF4806345 +:1041400023620023A3626362E36222660F4A62660F +:10415000E01D1022A2662367E366636701F09FF902 +:10416000BFF35F8F0A49204601F099F9BFF35F8FD3 +:104170002023A371BFF35F8F10BD00BFD4040020C4 +:10418000496A0000526A0000DD050020CD050020CC +:10419000566A0000104B70B553F82040013053F8B8 +:1041A0002060A64200D870BDD4E9003595B153B166 +:1041B0002846984738B10028B8BF4042EB68FF282E +:1041C000A8BFFF201870EA68537843F001035370CA +:1041D0000834E6E79847FBE7E867000008B50A4BB4 +:1041E000012203201A70FFF7D5FF00F099FE04208A +:1041F000FFF7D0FF00F01CF9FCF730F9034A137BFE +:1042000023F00103137308BDDD09002080020020A4 +:1042100008B50348034A0021121A01F0A2FE08BDA6 +:10422000E0010020E009002070B5002386B00122E3 +:10423000CDE90423134E144D01930F22CDE9023230 +:104240001249142303FB005506EBC01604464FF435 +:10425000C07000FB04110E4B00954FF4A072304665 +:1042600000F088F8737B0B4AEE6023F0040373734D +:104270004FF4046304FB033313442C746B6006B0E7 +:1042800070BD00BF000200207C050020401200200D +:10429000E9440000000A002080B50020A6B0FFF726 +:1042A00079FF2D4B83F308882C4D2D4E6B692D4FD4 +:1042B00043F400736B610024E02385F82230EC772F +:1042C0002C766C76AC7685F820406B6A43F4E0235C +:1042D0006B6285F82340FDF73BFAFCF7A1FF4FF036 +:1042E000FF33AB62EB62FDF717FBFDF77DFA40F29F +:1042F0000113ADF8243006ABB360CDE9204423941C +:1043000001F0FCFD0120FFF745FF0220164DFFF7ED +:1043100041FF00F067FB154BB5610593012314497C +:104320000094CDE903434FF480623B46CDE901445C +:10433000284600F01FF86A7B064622F00402284651 +:104340006A7301F05EFE2046FFF76EFF3A46314683 +:104350002846FDF77BF800BF4012002000ED00E08A +:104360007C050020DD410000800200205D6A000025 +:10437000C01300202DE9FF410E9E067304264673EC +:104380000D9E867300F158050F46D61DC0E91655DF +:104390000C9A002526F007064037C0E90655C0E90B +:1043A0001A768560C573056706F1400802920B9A7C +:1043B000019288440A9A009242460446FDF714F896 +:1043C000044B65659B6803B15B6F6367404604B04F +:1043D000BDE8F0817C050020F0B587B0002505958B +:1043E000109D04950F9D03950E9D0295DDE91276B3 +:1043F0000D9D01950C9D00950446FFF7BBFFB6F19E +:10440000FF3F08BFB7F1FF3F05D056EA070305D1CC +:10441000204600F067FA204607B0F0BD03493A464F +:10442000334604F1180000F059FCF4E7676000001F +:104430002DE9F043294C2A4D87B02646AE4204F1BF +:104440002C040FD300F09EFA244CDFF898904FF420 +:10445000004640F2E737AC4220D307B0BDE8F04356 +:1044600000F0A4BA54F8043C059354F80C3C0493AF +:1044700054F8103C039354F8143C029354F8183C3D +:10448000019354F81C3C009354E9092354E90B01AF +:10449000FFF770FF54F82C3C5E65CEE7636A5A1C48 +:1044A0000DD023EAE37300213846C3FB060151EA2D +:1044B000C333D4F8008004D1404600F013FA2C3402 +:1044C000C9E74FF47A720023FBF71AFE02460B4647 +:1044D00008F11800494600F001FCF0E740650000D3 +:1044E000406500006760000008B50B4C0B4D4FF0B5 +:1044F0002002EFF3118382F31288BFF36F8F01F074 +:1045000039FE2B78606113B9FCF790FEEFE7FCF7FA +:10451000B9FD0028EBD1F7E77C050020DD0900207C +:1045200038B504464FF02003EFF3118583F312886A +:10453000BFF36F8F01F09BFD48B10022C26701F00D +:1045400060FD29460848BDE8384000F0B9B9D4E913 +:1045500002329A4218BF0133A360022104F1100015 +:1045600001F07AFEEDE700BFDE09002013B54FF041 +:104570002004EFF3118184F31288BFF36F8F8468F6 +:1045800044B1013C846081F31188BFF36F8F002038 +:1045900002B010BD52EA030406D181F31188BFF3C3 +:1045A0006F8F6FF00F00F3E7CDE90023024602485A +:1045B00000F068F9ECE700BFDE09002070B50446A2 +:1045C0004FF02003EFF3118583F31288BFF36F8F51 +:1045D0006FF00A06204601F04AFD18B1C66701F0E7 +:1045E00010FDF7E7A060022104F1100001F034FE95 +:1045F00029460248BDE8704000F062B9DE0900209B +:10460000C3897F2B12D80A4B1B6863B1094B90F901 +:104610000E201B689A4209DB437BDB0606D1064B62 +:10462000C31A18BF012303F0010070470023FAE703 +:10463000A8050020A405002000020020044BC01A99 +:10464000044BC0105843044B01221A54704700BF5A +:1046500000030020ABAAAAAADE09002070B50E4B09 +:104660000E4C1E7C06EB460304EBC30405462046B5 +:1046700001F06AFD0A4B002228469A55FFF7C0FF59 +:1046800048B1084B08491A68013A2046D317BDE8DB +:10469000704000F023BB70BD7C05002000030020AB +:1046A000DE090020A80500203D46000038B50D4D6C +:1046B0002B4653F81C4F9C4200D004B9EC68AB6801 +:1046C00038B95A7BD20604D1A26912B9DA897F2A95 +:1046D00005D89C4202D02046FFF7C0FF2346AB61BD +:1046E00038BD00BF7C05002070B590F90D20437BDC +:1046F000002A014604DA03F07F03437301F047FC0C +:104700004B7B154A63F07F0310464B7350F81C3FF8 +:10471000146A834208BF002323B9C1E90004216061 +:1047200011620CE091F90E5093F90E60B5420ED073 +:10473000AE420CDD5868C1E90030016059609068F4 +:10474000431A5842BDE870405841FFF7AFBF9C4242 +:10475000E3D01B68E0E700BF7C05002070B490F94F +:104760000D30427B002B29DBD30627D183692BBB7D +:10477000134962F07F0242730A4652F81C4F94427A +:1047800018BF23460C6A23B9C0E9002420600862E0 +:104790000CE090F90E5093F90E60B5420AD0AE428B +:1047A00008DD5A68C0E900321060586070BC002013 +:1047B000FFF77CBFA342E7D01B68E4E770BC7047FB +:1047C0007C05002008B590F90D20437B002A0146A6 +:1047D00004DA03F07F03437301F0D9FB044B9868BC +:1047E000431A58425841BDE80840FFF75FBF00BF79 +:1047F0007C05002070B515461C46064601F0D9FB25 +:10480000B4F1FF3F08BFB5F1FF3F08D02A46234669 +:1048100006F118000249BDE8704000F05FBA70BDB3 +:104820006760000038B54FF02003EFF3118583F384 +:104830001288BFF36F8F104B104A9C681068A0421B +:1048400006D1FFF70BFF85F31188BFF36F8F38BDDB +:1048500000211B7C11600A4AD35C002BF3D0204658 +:10486000FFF7CEFE0028EED0637BDB0602D12046A8 +:10487000FFF73AFF2046E4E77C050020A005002072 +:10488000DE09002070B50C480C4D86682E600C4681 +:104890001146DDE904234FF02006EFF3118586F37E +:1048A0001288BFF36F8F8068FFF7A4FF2046BDE832 +:1048B0007040FCF745BD00BF7C050020A00500202E +:1048C00049B9EFF3058030B9054B9A699B689A4264 +:1048D00001D0FCF735BD81F31188BFF36F8F7047AE +:1048E0007C05002010B54FF02002EFF3118482F315 +:1048F0001288BFF36F8F427B510704D484F3118871 +:10490000BFF36F8F10BD22F004024273FFF726FF42 +:1049100021460248BDE81040FFF7D2BFDF09002062 +:1049200070B50446183001F00FFC4FF02003EFF390 +:10493000118683F31288BFF36F8F94F90D20637B88 +:10494000002A05DA03F07F036373204601F01FFBA2 +:104950000B4D637BA86843F010036373031B58423D +:104960005841FFF7A3FE86F31188BFF36F8FAB6842 +:10497000A34203D1BDE8704001F0B9BB70BD00BFD8 +:104980007C0500204FF02003EFF3118183F31288A0 +:10499000BFF36F8F044B9A68D37B013BD37381F3D2 +:1049A0001188BFF36F8F70477C05002010B54FF062 +:1049B0002003EFF3118483F31288BFF36F8F084B4A +:1049C0009A68D37B0133D3730020FFF76FFE84F323 +:1049D0001188BFF36F8FBDE8104001F088BB00BFA6 +:1049E0007C050020024B03F11C02C3E9072270473B +:1049F0007C050020F8B54FF02003EFF3118583F319 +:104A00001288BFF36F8F19498868437B03F07F03D7 +:104A1000437301F0BCFA8B685A7B084662F07F0250 +:104A20005A7350F81C2F0C6A824208BF002222B928 +:104A3000C3E9000423600B620CE093F90E6092F965 +:104A40000E70BE420ED0B7420CDD5168C3E90021A2 +:104A50000B6053600120FFF729FE2846BDE8F840AF +:104A6000FCF76EBCA242E3D01268E0E77C050020B0 +:104A700050EA01032DE9F04105460E4603D1FFF748 +:104A8000B9FF00202CE0831C71F1FF332ADB01F019 +:104A900081FB2C184FF02003EFF3118883F3128869 +:104AA000BFF36F8F114F124BB8681860FFF78AFE83 +:104AB000B86810492A463346183000F00FF9BA6832 +:104AC000537B43F0100353734046FCF739FC01F06D +:104AD00061FB201A63EB0303012873F10003D0DBB1 +:104AE000BDE8F0816FF00104241AD3E77C050020B3 +:104AF000A005002067600000B1F1FF3F08BFB0F1E2 +:104B0000FF3F08B506D1084B9868FFF709FF4FF043 +:104B1000FF3008BDFFF7ACFF4FF47A7380FB03034F +:104B2000C00B40EA4340F4E77C050020014B986845 +:104B3000704700BF7C0500202DE9F04104464FF08E +:104B40002003EFF3118683F31288BFF36F8F037B8B +:104B5000D9070BD586F31188BFF36F8F404080F3E0 +:104B600011884FF0040002DFBDE8F081437B1A0793 +:104B700004D586F31188BFF36F8FF5E723F0200289 +:104B800042F00801D20920D14173A36813B1204635 +:104B900001F005FA04F1180001F0D6FA04F1580703 +:104BA0004FF00008A56DBD4200D0B5B90120FFF758 +:104BB0007DFD104B9B68A342DBD1EFF30583002BF7 +:104BC000D7D13046FCF7BCFBD3E703F05F0343F0DB +:104BD0000803437301F0DBF9D7E7284601F0DFF95A +:104BE00005F1180001F0B0FAC5F87C802846FFF7FF +:104BF000B5FDD7E77C050020D3B5DDE90667089C45 +:104C0000CDE90067FFF73EFE1CB1034B9B685B6973 +:104C1000236002B0D0BD00BF7C05002008B5064867 +:104C2000064A0749121A01F09EF9BDE80840054AF4 +:104C30000549064801F097B900000020E001002076 +:104C4000B06A000000000000B06A00000000002010 +:104C5000034B1B680BB9FEF7FBB80020704700BF81 +:104C6000AC05002010B50E4B1C689C4204D1FFF728 +:104C7000EFFF6FF0004010BDFFF7EAFF002CF8D007 +:104C8000D4E904321B1A62EBE072B3F1004F72F107 +:104C90000001EEDA002AACBF18460020EBE700BFA7 +:104CA000CC01002030B570B10B4B5B6898420AD044 +:104CB000036843B1D3E90421D0E90445121941EB5B +:104CC0000501C3E90421D0E9003213605A600023D2 +:104CD000C0E9003330BD00BFCC010020B3F1FF3F7D +:104CE00008BFB2F1FF3FF8B504461D4616465CD03A +:104CF00081604FF02003EFF3118783F31288BFF335 +:104D00006F8F013275F1FF3324DA2D49D1E900208C +:104D10006FF001039B1A4FF0FF3262EB00009E1B05 +:104D200060EB0500012E70F1000301DA012600207E +:104D3000C4E90460234ED6F800C07568B44508BFC6 +:104D40004FF0000CBCF1000F0DD1C4E900652C60E0 +:104D500074601CE0FFF77CFF013645F10005361852 +:104D600045EBE070E4E7DCE90420D4E90431934248 +:104D700071EB000E1ADAD21ADCF8043060EB010095 +:104D8000CCE90420C4E900C31C60CCF804403368BB +:104D9000B34206D09C4204D1FFF764FF0021FEF726 +:104DA00025F887F31188BFF36F8FF8BD9B1A61EB6D +:104DB0000001AC45C4E90431C7D0DCF800C0C1E74C +:104DC00018030020CC0100202DE9F84F4FF02003FC +:104DD000EFF3118C83F31288BFF36F8FDFF8B0A06D +:104DE000DFF8B0902C4FC9F80000DAF8000000247A +:104DF000504508BF00200025D7E90021D9F8003030 +:104E0000E04680B3D0E9046C4FEAE37EB3427EEB28 +:104E10000C0B05DAF61A6CEB0E04C0E9046422E010 +:104E2000B21841EBE671C0E90445C7E90021FFF77C +:104E300039FF88F31188BFF36F8F836898474FF06D +:104E40002003EFF3118883F31288BFF36F8FD9F833 +:104E50000030DAF800009B1B5045C446C9F800300A +:104E6000CAD1D7E900219A1841EBE3730024C7E9BE +:104E70000023C9F80040FFF7F5FE2146FDF7B6FF15 +:104E800088F31188BFF36F8FBDE8F84FFFF7CABCF6 +:104E9000CC010020AC0500201803002010B54FF015 +:104EA0002003EFF3118483F31288BFF36F8FFFF7B2 +:104EB000CFFE064A0346D2E90001181841EBE37120 +:104EC00084F31188BFF36F8F10BD00BF180300205B +:104ED00038B503464FF02002EFF3118582F31288B4 +:104EE000BFF36F8FC160012181600068834206D1EA +:104EF00085F31188BFF36F8F0024204638BDD0E9B9 +:104F0000003213605A600023C0E9003301F04AF90F +:104F1000294604460148FFF7D3FCEEE7DF090020ED +:104F2000014800F04EB900BF656A00001FB5094B8B +:104F3000029302AB00240093074908488DF80C4007 +:104F40004FF0FF334FF4806200F000F9204604B0C8 +:104F500010BD00BFA76A0000001800202003002039 +:104F60002DE9F04F4A4E85B004464FF0FF384FF020 +:104F7000FF394FF02003EFF3118783F31288BFF35B +:104F80006F8FD4F880508DB9022104F1980001F0A0 +:104F900079F9002843D10023CDE90089029304F177 +:104FA000880239463B48FFF727FEE2E7D4F8842021 +:104FB0002B68C4F88030954208BFC4F88430D4F818 +:104FC000983043F00203C4F89830EB6823F00403F0 +:104FD00043F00103EB606B6887F31188BFF36F8FB9 +:104FE000284698474FF02003EFF3118B83F3128884 +:104FF000BFF36F8FEB68990723F0010219D4EA60C1 +:10500000D4F8983023F00203C4F898308BF3118859 +:10501000BFF36F8FDB05ACD4FFF7ECFCA9E704F11D +:10502000900500220121284601F06BF80028F8D1F4 +:10503000B1E7306823F00303EB600028E0D00027DD +:10504000D0F800A03B460028DAD0426895420146DD +:105050000CD101689FB972683160824200D17160E1 +:1050600040F8083BFFF75CFA39460023BAF1000F1D +:105070000BD0DAF8002050460F469246E3E739603D +:105080007268824208BF7760EAE75246F3E700BFE2 +:10509000B0050020DF090020F8B5C3689A07044670 +:1050A0000F46C3F340062CD45B071AD40B680BB928 +:1050B00083680B60E368DD0744BFA3683B603D681D +:1050C0004CBF02260126002D3AD01F4B9B68AB42F5 +:1050D0000AD0D5F89830D807C3F3800214D46FF003 +:1050E000120600233B6025E000F03FFFD5F8983022 +:1050F0000028F0D1D907C3F3C002F0D552B15B0745 +:1051000008D46FF00F06ECE7002AFAD1C3F3C0030E +:10511000002BF6D100232360D5F8843063B9C5E9AC +:105120002044284601F0B9F8E36843F00403E36043 +:105130003B68A3603046F8BD1C60C5F88440F0E7CA +:105140006FF01506CDE700BF7C050020F0B589B0F3 +:1051500004460020C4E920000E9D04F18800C4E943 +:10516000220004F19000C4E924001DB3287900282E +:1051700040F2011008BF0120C4F8980000204FF051 +:10518000FF364FF0FF37CDE90330CDE90100CDE91F +:105190000667094B00942046FFF71EF925B12968E0 +:1051A00011B1204600F0E7FE204609B0BDE8F0400E +:1051B00000F0E4BE0120DFE7614F000070470020EF +:1051C00070470FB407B504A951F8040B0191FBF720 +:1051D0001FFA03B05DF804EB04B07047044608B54D +:1051E000084611461A46A047FFF7A0FCFCF7E6FA6E +:1051F000038B13F0070305D10368002B0CBF0020BD +:1052000003207047022B05D1408BB0FA80F0400993 +:1052100080007047012B05D10368002B0CBF0020D4 +:10522000052070470020704710B50C4600B111B939 +:105230006FF0150010BD081D00F095F80028F9D199 +:10524000A368032BF6D9F3E72DE9F0410D46074695 +:105250001946281D90461E4600F099F8044638B1BC +:105260003346424629463846A446BDE8F0416047E9 +:10527000BDE8F08110B44FF02004EFF3118284F305 +:105280001288BFF36F8F416110BC0121FBF7CEB9CB +:1052900038B50C46054658B151B10B6843B14B685F +:1052A00033B11C22002100F016F92C61002038BD1A +:1052B0006FF01500FBE770B505460E46FFF7B4FF2B +:1052C000041E15DB4FF02003EFF3118283F31288E5 +:1052D000BFF36F8F6B8B2C8B4FF6FF718B4204F0FB +:1052E000070407D182F31188BFF36F8F6FF00A04B0 +:1052F000204670BD022C0CD101336B8382F31188E0 +:10530000BFF36F8F0023224631462846FFF79CFFEC +:10531000EEE7062C14D8DFE804F004131313041A84 +:105320000400002333606B683BB9C5E90066ACB983 +:1053300002212846FBF77AF9DAE71E606E60F6E78D +:1053400082F31188BFF36F8F6FF00404D0E782F30C +:105350001188BFF36F8F6FF08504C9E782F311885E +:10536000BFF36F8FC4E7034640B1426802F0030207 +:10537000022A06D0032A04D0012A05D06FF01500B6 +:1053800070471A68002AF9D000209860704710B55D +:105390004268816002F00302022A03464FF00004D3 +:1053A00007D0032A02D05C60002001E018685C602E +:1053B00010BD18685C600028F6D0FFF789FDF3E7A0 +:1053C0002DE9F84F9A46D3786F2B80460F46154645 +:1053D000A3F1410B29D024D8582B0CBF10260A2644 +:1053E000DDF828903246002340463946FAF788FE19 +:1053F000092AD4B21ED83034B045E4B277F10007A0 +:1054000009F8014D01D3D14511D82B789B0605D55C +:10541000082E15D1AB7843F00803AB704846BDE8C1 +:10542000F88F03F0F703702BD7E70826D8E78046FC +:105430000F46D7E7BBF1190F94BF37345734DBE77A +:10544000102EEBD1AB7843F01003E6E72DE9F041E5 +:105450000746884615461E461446B44205D30EB18B +:10546000601B08E02378002BFAD014F8010B4146AA +:10547000B8470028F1DABDE8F081704700F056BD6A +:105480000146006800F052BD00210120FFF7F6BF81 +:1054900008B5FBF72DFFBDE80840FCF70DB8013952 +:1054A000034611F8012F0AB91A70704703F8012B4F +:1054B000F7E7034600201A5C02B970470130FAE7AB +:1054C00010B5431E0A44914200D110BD11F8014BA2 +:1054D00003F8014FF7E7C9B202440346934200D1F3 +:1054E000704703F8011BF9E74FF0FF3070470346A0 +:1054F00000201A5C0AB1884200D170470130F8E7F9 +:10550000062808D14FF080430122C3F80025BFF3DD +:105510004F8F20BFFDE77047002383F31188BFF34F +:105520006F8F70470369C9B20C2201FB0233186CFC +:1055300000F0070070474FF02003EFF3118283F370 +:105540001288BFF36F8F036803F0C00343F00203B8 +:10555000036082F31188BFF36F8F704770B5C9B2D3 +:1055600003694FF02004EFF3118584F31288BFF331 +:105570006F8F0C2606FB0134246C14F0C00408D095 +:10558000A24206D085F31188BFF36F8F4FF0FF3032 +:1055900070BD06FB013301221A6485F31188BFF345 +:1055A0006F8F436803EBC1035B6898470020EFE708 +:1055B0008022FFF7D3BFF8B5069F0469C9B24FF048 +:1055C0002005EFF3118685F31288BFF36F8F0C254A +:1055D00005FB0144256C05F0070CBCF1010F0CD153 +:1055E000276486F31188BFF36F8FC4E90E234368E5 +:1055F00053F8313098470020F8BD05F0C005AF42A0 +:1056000086F31188BFF36F8F0CBF6FF077004FF0F8 +:10561000FF30F1E713B580240094FFF7CCFF02B010 +:1056200010BD10B40069CBB21C2403FB04000021A0 +:1056300010BC1047002000F0BDBA002000F0F6BA00 +:105640001046FEF76DBF43685B68D3F810350B60FA +:105650000020704743685B6802EA010021EA02010A +:10566000C3F80805C3F80C150020704743685B6851 +:105670000020C3F80815704743685B680020C3F832 +:105680000C15704743685A68D2F8043521EA0300C4 +:105690000B40C2F80805C2F80C350020704710B561 +:1056A00003695868F8B1884219D19C680868586045 +:1056B000A14200D19860002008602AB15A680A60AF +:1056C0009A68596002B99960002010E0814206D1C1 +:1056D0000868206098688142EDD19C60EBE7044641 +:1056E00000680028F2D1002AE8D16FF0150010BD43 +:1056F00030B543681360057A446804EBC504A342DF +:1057000002D36FF0010030BD5C798C4201D00833C8 +:10571000F0E70020F7E702690B46D2E9010183E8D0 +:1057200003000020704743681B68D3F88004C3F867 +:1057300080047047436802691B68D3F8100150B1B8 +:105740005269002012780A70C3F81001D3F81021B2 +:1057500001221A6070474FF0FF307047026803461D +:10576000D2F8580140B95B689B0706D4D2F82001F3 +:10577000003818BF01207047012070474268136845 +:10578000D3F80413C90518D5D3F82011A9B14FF0E7 +:105790002000EFF3118180F31288BFF36F8FD3F8ED +:1057A000200130B10020C3F82001D3F820010120EE +:1057B000D86081F31188BFF36F8F5268D20615D578 +:1057C0004FF02001EFF3118281F31288BFF36F8F46 +:1057D000D3F8581111B10021C3F800154FF480011E +:1057E000C3F8081382F31188BFF36F8F704700224C +:1057F00001212F20FBF764BD10B50B6813B91360AE +:10580000184605E003685C681CB1146003681868FA +:1058100010BD083303600B68013B0B60EDE70346E6 +:105820000A4600681979012303FA01F103691B682C +:10583000194218BF82F0010212B18368DB68184771 +:1058400083681B69FBE710B5036804464BB19A688F +:105850003AB1186900F0A2FC206800210830FFF777 +:10586000DEFFA36933B9636004F11000BDE81040A6 +:10587000FEF756BE10BD10B5006903688B4206D115 +:1058800090F87C4034B9FFF7DEFF204610BD6FF082 +:105890001500FBE76FF00F00F8E72DE9F3414468CE +:1058A0000569E66B01AA00213046FFF721FF0028B9 +:1058B00043DB019B326819791868FCF793FB0028D9 +:1058C0003BDB636B9847AC6801260834D5E90232AC +:1058D00003EBC203A4F10802934204D82846FFF761 +:1058E000B2FF002029E054F8080C00F008FB38B3A0 +:1058F00054F8080C14F8041C34F8023CD0F810C01A +:10590000D0F80880DCF80070DA0754BF43F4B01315 +:1059100083F4D01323F4801206FA01FEDB074CBF98 +:105920004EEA070727EA0E07CCF80070D8F80030D7 +:105930009847002804F10804C8DA02B0BDE8F081F5 +:105940006FF01200F9E7F8B50469236806460D46C2 +:105950006BB19A685AB1998811F4805707D11869C8 +:1059600000F01CFC206839460830FFF758FF94F817 +:105970004C3043B9256404F12800FEF7D1FD002323 +:1059800084F87C30F8BD636C4BB122689288D207F2 +:1059900001D505B9256FA26C294630469847236882 +:1059A0009B8813F40053EAD1636004F11000E4E72C +:1059B00038B503780C46002B4CD18D6F35B9606F2C +:1059C0006FF07301BDE83840FFF7BDBF4B6E9BB170 +:1059D0009D4211D85B1B4B66002B2FD10B6D0833FA +:1059E0000B654B6D013B4B6501F1640204F1500006 +:1059F0005431FFF701FF206623689B88DB0742BF15 +:105A0000236F5B192367E36E9BB19D4211D85B1B2B +:105A1000E366CBB9A36D0833A365E36D013BE36592 +:105A200004F16C0204F15C0104F15800FFF7E4FE9C +:105A3000A066606FBDE83840FCF720BD0B6E002B00 +:105A4000DAD02B440B66D7E7A36E002BF1D02B44A2 +:105A5000A366EEE738BD1FB5079C0294069C01942F +:105A600001240094FCF758FD04B010BD1FB50024BC +:105A7000CDE901440094FCF74FFD04B010BD0022B5 +:105A800001210420FBF71CBC10B5036804468BB150 +:105A90009A687AB1186900F081FB236898681B7BCB +:105AA0000121994003691B68194283680CBF1B6977 +:105AB000DB689847A36933B9636004F11000BDE85F +:105AC0001040FEF72DBD10BD08B5006903688B427C +:105AD00003D1FFF7D9FF002008BD6FF01500FBE7E9 +:105AE00010B50446084694F84C30114633B9226488 +:105AF00004F12800BDE81040FEF712BD636C3BB115 +:105B000022689288D20701D501B9216FA26C98470B +:105B100023689B8813F4005303D1636004F11000E1 +:105B2000E8E710BD034608461A78012A03D15A68EF +:105B30001039FFF7D5BF70471FB5079C0294069C2C +:105B4000019401240094FCF769FE04B010BD1FB558 +:105B50000024CDE901440094FCF760FE04B010BDC0 +:105B60001046FFF7B5B9704700F150039B009BB298 +:105B700003F1804303F5883300221A601B687047E5 +:105B8000004700F00BBBC00000F1804000F5F8308A +:105B9000C0F81015C0F81425704708B50020FBF7B1 +:105BA00081FB08B9FBF75CFB4FF080430022C3F890 +:105BB000182508BD08B510B101282CD008BD4FF03C +:105BC0008042D2F81814D2F81834C80317D503F05D +:105BD0000303012B04D013B10020FDF785FA002345 +:105BE0004FF08042C2F818350023C2F80431D2F8D1 +:105BF00004310223C2F8043301239360DEE7D2F8B4 +:105C00001434D907EBD5D2F81C349B07E4D4022313 +:105C1000C2F80433D2E74FF080430022C3F80021DA +:105C2000D3F80021C3F804031860C7E7FDF75CBA96 +:105C3000F7B5019001A8DDE9084716461D46FDF7B6 +:105C4000F9FA019BB6F1000C18BF4FF0010C00EB04 +:105C500083000B1E18BF0123002D43EA4C0314BF21 +:105C60004FF00C0C4FF0000C002C43EA0C0314BF57 +:105C70004FF4E06C4FF0000C002F43EA0C03D0F817 +:105C8000002714BF4FF4403C4FF0000C43EA0C03D4 +:105C900022EA030301B109780EB136787600194380 +:105CA0000DB12D78AD0031430CB124782402294385 +:105CB0000FB13F783F040C433C43C0F8004703B0AA +:105CC000F0BD1FB50DF10F03019300238DF80F10E8 +:105CD00000931A461946FFF7ABFF05B05DF804FBC9 +:105CE00070B5A2F58074A408012606FA04F40546EE +:105CF00014EA010008D0A85830B10021A950AA58D0 +:105D00001A6822431A60304670BD2DE9F341002322 +:105D100004460D460193904601AB4FF4A672FFF77F +:105D2000DFFF4FF4827229462046FFF7D9FF4FF478 +:105D30008C72074629462046FFF7D2FF064630B14F +:105D4000B8F1000F1DD017B1D4F83C353E4601AB79 +:105D50004FF4887229462046FFF7C2FF30B1B8F1F0 +:105D6000000F03D016B90FB1D4F83C3501AB4FF496 +:105D7000907229462046FFF7B3FF019802B0BDE8B4 +:105D8000F0814646E3E707B5019001A8FDF7BCFDA9 +:105D9000019A01239340C0F8083503B05DF804FB75 +:105DA00007B5019001A8FDF7AFFD019A01239340CB +:105DB000C0F80C3503B05DF804FB012370B5044650 +:105DC0000D4643616426002202212046FFF79DFF15 +:105DD00020B90120FFF7D5FE013EF4D100236B77F7 +:105DE00070BD1FB54A7D022AD3B207D0032B0FD056 +:105DF000012B00D1436205B05DF804FB00238DF850 +:105E000004300293039301A88B6889699847F2E7ED +:105E100001238DF80430D0F83C350293D0F84C358E +:105E2000F0E7F8B50B7C032B07460C465DD8CE7D1A +:105E30000568DEB9A068324633463146FEF7A0F861 +:105E40006068421C04D0334632463146FEF798F86B +:105E50002068431C04D00022E37C1146FEF790F832 +:105E60000023A27CE0681946FEF78AF8237E5BB91E +:105E7000D4E901102268E368C5F80805C5F81015D3 +:105E8000C5F80C25C5F81435637C227C003B18BF8F +:105E90000123022A23D0032A24D0012A01D143F06E +:105EA0000203C5F85435237DC5F85C35637DC5F81C +:105EB000C0350023C5F80431D5F80421C5F82831D0 +:105EC000D5F82831D5F8003243F00403C5F8003284 +:105ED000386840F30730FBF7C3F90120F8BD43F001 +:105EE0000403DEE743F00603DBE70020F6E7FEF7F6 +:105EF0001BB908B5FFF7FBFF002008BD704740B194 +:105F0000C368587810F001001EBF1878B0FA80F00E +:105F1000400970474FF02002EFF3118382F312889B +:105F2000BFF36F8FFEE708B5FFF7F4FFF8B505463E +:105F30000E464FF02003EFF3118783F31288BFF36F +:105F40006F8FFEF7F3FD314604462846FFF7EBFF5F +:105F500087F31188BFF36F8F2046BDE8F840FBF749 +:105F60002DBCFFF7B8BAFFF7ABBAEFF305800038E6 +:105F700018BF012070476FF057007047FEF7B2BCA2 +:105F800008B5FBF743F8BDE80840FFF7ECBDD0E9E2 +:105F9000003213605A600023C0E90033704708B52F +:105FA000FFF7F5FF437B23F0020343730023836075 +:105FB00008BD38B504460D46FEF704FC637B43F08C +:105FC00002036373E5B1A5602B689D4209D16B683C +:105FD000C4E900531C606C6012E06A689342F6D01A +:105FE0001B68002BF3D094F90E2093F90E108A420F +:105FF000F3D09142F1DD5A68C4E9003214605C606C +:1060000038BD10B54FF02003EFF3118483F31288ED +:10601000BFF36F8FFEF7A2FB84F31188BFF36F8F7E +:1060200010BD38B504464FF02003EFF3118583F31C +:106030001288BFF36F8F437B13F0280F0BD1836857 +:106040000BB1FFF7ACFF637B51B903F0FB03637344 +:106050002046FEF783FB85F31188BFF36F8F38BDB1 +:1060600003F0EB03F3E701211838FFF7DABF38B587 +:106070004FF02003EFF3118583F31288BFF36F8F86 +:106080000468A0420DD034B12046FFF788FF04F128 +:10609000180000F059F885F31188BFF36F8F204680 +:1060A00038BD0024F7E710B501464FF02003EFF3A9 +:1060B000118483F31288BFF36F8F83680BB1FFF7EE +:1060C0006EFF84F31188BFF36F8FBDE8104001F1BC +:1060D000180000F039B8034620B9EFF305820AB979 +:1060E000FBF72EB983F31188BFF36F8F70474FF022 +:1060F0002003EFF3118083F31288BFF36F8FFFF754 +:10610000EABF38B54FF02003EFF3118583F312880F +:10611000BFF36F8F0468A04212D09CB1E167626147 +:106120002046FFF73CFF04F1180000F00DF8204670 +:10613000FEF714FB012085F31188BFF36F8F38BD84 +:106140000020F8E72046F6E710B54FF02002EFF305 +:10615000118482F31288BFF36F8F03683BB1FEF79F +:10616000A1FD002084F31188BFF36F8F10BD6FF085 +:106170001500F7E710B54FF02003EFF3118483F318 +:106180001288BFF36F8FFEF76DFD84F31188BFF3A4 +:106190006F8F10BD08B5FEF781FE08BD08B1FBF793 +:1061A00021BC70472DE9F843846805460E4644B18A +:1061B0006378012B2ED114F8533C13F002030AD15B +:1061C0002370EB68C3F386321643002066F39433E2 +:1061D000A860EB603EE054E90E23B3F1FF3F08BF37 +:1061E00012F1020F32D0A4F160084046FFF75BFFC6 +:1061F000082E0CBF6FF003030023E36114F8533C37 +:10620000DB0609D154F8487C37B94046FFF7F9FE60 +:106210002770D6E7022B01D00023D1E72378002B8B +:10622000CFD054F8047C002FF2D04FF00008A4F136 +:10623000140904F11400FFF787FFC4F82C804946C5 +:10624000384600F031F884F80080BAE70023237064 +:106250006FF00A00BDE8F88303460068834208D067 +:10626000D0E9003213605A600023C0E90033FFF721 +:1062700099BF704700238360704783680B60C368D1 +:1062800013607047026801238B4022EA0303036016 +:1062900022FA01F000F00100704720B100221146FF +:1062A0008830FFF72EBF704713B5019008464FF0B6 +:1062B0002003EFF3118483F31288BFF36F8F01A9DA +:1062C000FEF7EAFE84F31188BFF36F8F02B010BDB2 +:0862D000649EFF7F0100000045 +:1062D80085190000000000006D1A000030630000FE +:1062E800F35E000000000000191E00004863000073 +:1062F800191E000060630000C922000078630000D6 +:10630800E51C0000000000008D2C000000000000CB +:106318002D4F0000000000009B5800009063000013 +:08632800C9270000A863000072 +:106330007C6900005866000068660000D4010020F7 +:106340000C0400206265000099690000846600006A +:10635000A4660000D6010020600400205C650000F7 +:10636000A769000094660000A4660000D801002020 +:106370006C04002054650000B5690000C866000088 +:10638000FC660000DA010020380000204E650000A5 +:10639000D36900001067000078670000DC0100206E +:1063A0005400002046650000EE690000846700008C +:1063B000D8670000DE010020D80000204065000002 +:1063C000CD310000815B0000000000008954000016 +:1063D000786300007D570000000000008954000031 +:1063E000B9400000815B00000000000089540000FB +:1063F00061370000815B000000000000895400004C +:1064000000000000895400000000000089540000D2 +:1064100000000000895400000000000089540000C2 +:1064200000000000895400000000000089540000B2 +:1064300000000000895400000000000089540000A2 +:10644000000000008954000000000000192D000029 +:106450000000000089540000000000008954000082 +:106460000000000089540000000000008954000072 +:106470000000000089540000000000008954000062 +:106480000000000089540000000000008954000052 +:106490000000000089540000000000008954000042 +:1064A0000000000089540000000000008954000032 +:1064B0000000000089540000000000008954000022 +:1064C0000000000089540000000000008954000012 +:1064D0000000000089540000000000008954000002 +:1064E00000000000895400000000000089540000F2 +:1064F00000000000895400000000000089540000E2 +:1065000000000000895400000000000089540000D1 +:1065100000000000895400000000000089540000C1 +:1065200000000000895400000000000089540000B1 +:106530000000000089540000253F0000815B00003E +:1065400000800080FF7F030000800080FF7F0080CC +:106550000080FF7F008000800500FF7F00800080BA +:08656000FF7F00800080FF7F37 +:10656800156A000000000000206A0000000000001A +:106578002C6A000000000000356A000000000000DE +:106588003F6A0000000000004569000000000000AC +:106598008B690000000000005F6900000000000037 +:1065A800626A0000000000005C6900000000000052 +:1065B8007869000000000000E069000000000000A9 +:1065C800FB69000000000000C36900000000000033 +:0865D800FFFFFFFFFFFFFFFFC3 +:1065E000C005002002000000BE05002002000000DF +:1065F0000338FDD87047000000093D000701000086 +:1066000000000000000000000000000000093D0044 +:106610000601000010000020000000000000000043 +:10662000000000200000000000000B060200000037 +:1066300034660000000000006369000026000207C5 +:10664000000000206B69000022000B11291A0000D5 +:10665000F919000000000000151B0000B51B000028 +:10666000355600003B560000791B0000B155000074 +:106670001556000000000000255500000000000035 +:1066800000000000FFFF00000003005000000000B9 +:1066900001000000FFFFFFFF0000005000000000AD +:1066A000000000009D1E00004756000055560000E7 +:1066B0006D5600007956000085560000351D00001B +:1066C0009F56000000000000002000400200000073 +:1066D00000000000D866000000200040E4660000D2 +:1066E00001000000EC66000004000000060000004D +:1066F00005000200880101008701030035570000F2 +:10670000B123000027570000612100001757000047 +:1067100000F00240000000000048E8010000000016 +:106720000000000000000000FFFFFFFF0000FF006E +:106730000000000000000000FFFFFFFF020000015A +:1067400001000000EF570000FFFF0000506700004D +:1067500000F002405C670000010000006467000078 +:10676000030000001F0004001E0005001D000600BD +:10677000606300001C0001006D5A0000575A0000C1 +:1067800077580000004000400000000000000000BA +:1067900000000000000000000000000000000000F9 +:1067A00000FF0001010000007F5A0000FFFF000011 +:1067B000B467000000400040C06700000100000016 +:1067C000C867000004000000210007002200080044 +:1067D0002300090024000A004F5B0000395B000021 +:1067E000C95A0000F5FFFFFFD8620000D862000020 +:1067F0001063000018630000306300003063000085 +:1068000053504920534C4156452054583A20307833 +:10681000252E32782C203078252E32780A005350DD +:106820004920736C617665207472616E736365696B +:106830007665206572726F723A2025690A0053509E +:1068400049206D61737465722064657669636520A3 +:106850006E6F74207265616479210A00535049207B +:106860006D617374657220636869702073656C650F +:10687000637420646576696365206E6F7420726549 +:10688000616479210A0053504920736C6176652058 +:10689000646576696365206E6F74207265616479E2 +:1068A000210A00535049206D61737465722F736C17 +:1068B000617665206578616D706C652073746172B6 +:1068C0007465640A005350492054583A20307825A2 +:1068D0002E32782C203078252E32780A00535049F9 +:1068E000207472616E736365697665206572726F7C +:1068F000723A2025690A005350492052583A2030F4 +:1069000078252E32782C203078252E32780A0045D2 +:1069100072726F7220746F67676C696E67204C4586 +:10692000442070696E0A0053504920534C4156452B +:106930002052583A203078252E32782C2030782575 +:106940002E32780A0063627072696E74665F7061DD +:10695000636B61676500286E696C2900706D006D5E +:10696000707500464C4153485F30005352414D5FB3 +:106970003000000001000000736F6300636C6F6300 +:106980006B40343030303030303000636C6F636BCC +:106990005F636F6E74726F6C006770696F40353043 +:1069A000303030333030006770696F403530303010 +:1069B00030303030007561727440343030303230F5 +:1069C000303000756172745F6E7266785F756172E7 +:1069D0007465007370694034303032663030300096 +:1069E0007370695F6E7266785F7370696D00737043 +:1069F00069403430303034303030007370695F6E4D +:106A00007266785F73706973000000000000010116 +:106A100000000000004E5246585F434C4F434B006D +:106A20004E5246585F4750494F5445004E524658C3 +:106A30005F505049004E5246585F5350494D004EEA +:106A40005246585F53504953005465726D696E61E8 +:106A50006C0052545400534547474552006D6169DC +:106A60006E006F73002A2A2A20426F6F74696E6766 +:106A7000205A6570687972204F53206275696C6482 +:106A8000207A65706879722D76332E332E302D334F +:106A90003936382D676330336531393030616537C9 +:106AA00066202A2A2A0A00737973776F726B710045 +:106AB0000000002000000020000000000000000096 +:106AC000606300001C000100000000001C000020AA +:106AD0001C0000200000000000000000BF5100006A +:106AE000FFFFFFFFE95400000000000000C20100AA +:106AF0000001030000000000C4050020C3050020C1 +:106B000000000000000000000000000070670000AE +:106B1000010000006400002064000020000000006C +:106B20000100000074000020740000207C000020A0 +:106B30007C00002000000000010000008C0000200C +:106B40008C00002000000000000000000000000099 +:106B50000000000000000000000000000000000035 +:106B60000000000000000000000000000000000025 +:106B70000000000000000000906300000000000022 +:106B800000000000C505002000000000000000001B +:106B90000000000000000000E8000020E8000020E5 +:106BA0000000000001000000F8000020F8000020B4 +:106BB0000001002000010020000000000100000092 +:106BC0001001002010010020000000000000000063 +:106BD00000000000000000000000000000000000B5 +:106BE00000000000000000000000000000000000A5 +:106BF0000000000000000000000000000000000095 +:106C00000000000000000000000000000000000084 +:106C10000000000000000000000000000000000074 +:106C20000000000000000000000000000000000064 +:106C30000000000000000000000000000000000054 +:106C40000000000000000000000000000000000044 +:106C50000000000000000000000000000000000034 +:106C6000000000000000000000000000FF00000025 +:106C70000000000000000000FFFF0F00CC0100201A +:046C8000CC01002023 +:0C6C840000000000000000000000000004 +:046C900015E015E016 +:040000030000178D55 +:00000001FF diff --git a/zephyr.uf2 b/zephyr.uf2 deleted file mode 100644 index 5dcc676..0000000 Binary files a/zephyr.uf2 and /dev/null differ